-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
51 lines (45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apply plugin: 'com.android.library'
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.4.2'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
android {
namespace "com.fr3ts0n.androbd.plugin"
compileSdk 34
defaultConfig {
minSdkVersion 15
// SDK 25 to allow background service mechanism for plugins
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 25
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
lintOptions {
// Override lint error on targetSdkVersion
abortOnError false
}
versionCode 10201
versionName 'V1.2.1'
}
buildTypes {
configureEach {
resValue "string", "app_version", defaultConfig.versionName
}
release {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
}
productFlavors {
}
}