-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathandroid_app.gradle
More file actions
36 lines (29 loc) · 920 Bytes
/
android_app.gradle
File metadata and controls
36 lines (29 loc) · 920 Bytes
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
33
34
35
36
apply plugin: 'com.android.application'
android {
compileSdkVersion _android.compileSdkVersion
buildToolsVersion _android.buildToolsVersion
defaultConfig {
applicationId _android.applicationId
minSdkVersion _android.minSdkVersion
targetSdkVersion _android.targetSdkVersion
versionCode _android.versionCode
versionName _android.versionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
// rxjava
api rx.rxjava2
api rx.rxandroid2
}