-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlibrary.gradle
More file actions
25 lines (23 loc) · 712 Bytes
/
library.gradle
File metadata and controls
25 lines (23 loc) · 712 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
apply plugin: "com.android.library"
apply from: "../maven-upload.gradle"
android {
compileSdkVersion android_compile_sdk_version
buildToolsVersion android_build_tools_version
defaultConfig {
minSdkVersion android_min_sdk_version
targetSdkVersion android_target_sdk_version
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compileOnly "androidx.appcompat:appcompat:$androidx_appcompat_version"
}