react-native-navigation的迁移库

build.gradle 845B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "25.0.2"
  5. defaultConfig {
  6. applicationId "com.reactnativenavigation.e2e.androide2e"
  7. minSdkVersion 18
  8. targetSdkVersion 25
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. }
  14. dependencies {
  15. compile fileTree(dir: 'libs', include: ['*.jar'])
  16. compile 'com.android.support:appcompat-v7:25.1.1'
  17. androidTestCompile 'org.assertj:assertj-core:2.5.0'
  18. androidTestCompile 'com.android.support:support-annotations:25.1.1'
  19. androidTestCompile 'com.android.support.test:runner:0.5'
  20. androidTestCompile 'com.android.support.test:rules:0.5'
  21. androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
  22. }