mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
ced272d906
Summary: **Motivation** Android project for TicTacToe example is missing. **Test plan (required)** Open Android Studio and run TicTacToe-android-app. It builds and runs as expected. Closes https://github.com/facebook/react-native/pull/8918 Differential Revision: D3684375 Pulled By: foghina fbshipit-source-id: cd4112467179d3d334cab198d817ed8b5b32599b
32 lines
738 B
Groovy
32 lines
738 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.facebook.react.tictactoe"
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
ndk {
|
|
abiFilters "armeabi-v7a", "x86"
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:23.0.1'
|
|
|
|
// Build React Native from source
|
|
compile project(':ReactAndroid')
|
|
}
|