react-native-navigation的迁移库

build.gradle 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileOptions {
  4. sourceCompatibility JavaVersion.VERSION_1_8
  5. targetCompatibility JavaVersion.VERSION_1_8
  6. }
  7. compileSdkVersion 27
  8. buildToolsVersion "27.0.3"
  9. defaultConfig {
  10. applicationId "com.reactnativenavigation.e2e.androide2e"
  11. minSdkVersion 24
  12. targetSdkVersion 27
  13. versionCode 1
  14. versionName "1.0"
  15. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. implementation 'com.android.support:appcompat-v7:27.0.2'
  21. androidTestImplementation 'org.assertj:assertj-core:3.8.0'
  22. androidTestImplementation 'com.android.support:support-annotations:27.0.2'
  23. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  24. androidTestImplementation 'com.android.support.test:rules:1.0.1'
  25. androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.3'
  26. }