-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathbuild.gradle
32 lines (30 loc) · 1.09 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
apply plugin: 'com.android.library'
android {
compileSdkVersion {{{compileSdkVersion}}}
buildToolsVersion "{{{buildToolsVersion}}}"
defaultConfig {
minSdkVersion {{{minSdkVersion}}}
targetSdkVersion {{{targetSdkVersion}}}
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.{{{sourceCompatibility}}}
targetCompatibility JavaVersion.{{{targetCompatibility}}}
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:{{{androidxAppcompactVersion}}}'
implementation 'androidx.lifecycle:lifecycle-extensions:{{{androidxLifecycleExtrnsionsVersion}}}'
implementation 'com.walmartlabs.ern:react-native:{{{reactNativeVersion}}}'
testImplementation 'junit:junit:4.12'
}