1234567891011121314151617181920212223242526272829303132 |
- apply plugin: 'com.android.application'
-
- android {
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
-
- compileSdkVersion 27
- buildToolsVersion "27.0.3"
- defaultConfig {
- applicationId "com.reactnativenavigation.e2e.androide2e"
- minSdkVersion 24
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
-
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- }
-
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support:appcompat-v7:27.0.2'
-
- androidTestImplementation 'org.assertj:assertj-core:3.8.0'
- androidTestImplementation 'com.android.support:support-annotations:27.0.2'
- androidTestImplementation 'com.android.support.test:runner:1.0.1'
- androidTestImplementation 'com.android.support.test:rules:1.0.1'
- androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.3'
- }
|