You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1013 B
35 lines
1013 B
8 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
7 years ago
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
||
8 years ago
|
|
||
|
defaultConfig {
|
||
7 years ago
|
minSdkVersion rootProject.ext.minSdkVersion
|
||
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||
8 years ago
|
versionCode 1
|
||
7 years ago
|
versionName "0.1"
|
||
8 years ago
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
7 years ago
|
|
||
8 years ago
|
sourceSets {
|
||
7 years ago
|
main.java.srcDirs += 'src/main/options'
|
||
|
main.java.srcDirs += 'src/main/views'
|
||
8 years ago
|
main.java.srcDirs += 'src/main/utils'
|
||
|
}
|
||
8 years ago
|
}
|
||
|
|
||
|
dependencies {
|
||
7 years ago
|
compile 'com.android.support:exifinterface:25.3.1'
|
||
7 years ago
|
compile 'com.android.support:support-annotations:25.3.1'
|
||
8 years ago
|
compile 'android.arch.lifecycle:runtime:1.0.0-alpha1'
|
||
|
compile 'android.arch.lifecycle:extensions:1.0.0-alpha1'
|
||
|
annotationProcessor 'android.arch.lifecycle:compiler:1.0.0-alpha1'
|
||
8 years ago
|
}
|
||
8 years ago
|
|