12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- apply plugin: "com.android.application"
-
- project.ext.react = [
- root : "../../../",
- entryFile: "playground/index.android.js"
- ]
-
- apply from: "../../../node_modules/react-native/react.gradle"
-
- android {
- compileSdkVersion 25
- buildToolsVersion "25.0.3"
-
- defaultConfig {
- applicationId "com.reactnativenavigation.playground"
- minSdkVersion 16
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- ndk {
- abiFilters "armeabi-v7a", "x86"
- }
- }
- signingConfigs {
- release {
- storeFile file('../playground.keystore')
- storePassword "playground"
- keyAlias "playground"
- keyPassword "playground"
- }
- }
- buildTypes {
- release {
- signingConfig signingConfigs.release
- }
- }
- }
-
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.facebook.react:react-native:+'
- compile 'com.android.support:design:25.3.1'
- compile "com.android.support:appcompat-v7:25.3.1"
- compile project(':react-native-navigation')
- }
|