-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·142 lines (125 loc) · 3.93 KB
/
Copy pathbuild.gradle
File metadata and controls
executable file
·142 lines (125 loc) · 3.93 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
libs = [
recyclerview : 'androidx.recyclerview:recyclerview:1.2.1',
recyclerview_selection: 'androidx.recyclerview:recyclerview-selection:1.2.0-alpha01',
legacy_support_v4 : 'androidx.legacy:legacy-support-v4:1.0.0',
appcompat : 'androidx.appcompat:appcompat:1.4.0-alpha03',
annotation : 'androidx.annotation:annotation:1.1.0',
mediarouter : 'androidx.mediarouter:mediarouter:1.2.0-alpha01',
material : 'com.google.android.material:material:1.5.0-alpha02',
transition : 'androidx.transition:transition:1.2.0-qpreview01',
compress : 'org.apache.commons:commons-compress:1.21',
]
}
repositories {
maven {
url 'https://maven.aliyun.com/repository/jcenter'
}
maven {
url 'https://maven.aliyun.com/repository/central'
}
maven {
url 'https://maven.aliyun.com/repository/google'
}
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion COMPILE_SDK
buildToolsVersion BUILD_TOOLS_VERSION
defaultConfig {
applicationId "com.android.documentsui"
minSdkVersion 29
targetSdkVersion 30
versionCode 30
versionName "11"
}
signingConfigs {
platform {
storeFile file("platform.keystore")
storePassword '123456'
keyAlias 'platform'
keyPassword '123456'
}
}
buildTypes {
release {
debuggable false
minifyEnabled false
signingConfig signingConfigs.platform
}
debug {
debuggable true
minifyEnabled false
signingConfig signingConfigs.platform
}
applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "DocumentsUI.apk"
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
sourceSets {
main {
java.srcDirs = ['src', 'statslog-docsui-java-gen/gen']
res.srcDirs = ['res']
manifest.srcFile 'AndroidManifest.xml'
}
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
compileOnly files('libs/framework.jar')
implementation files('libs/guava.jar')
implementation(name: 'legacy-support-v13-1.1.0-alpha01', ext: 'aar')
implementation libs.compress
implementation libs.transition
implementation libs.legacy_support_v4
implementation libs.appcompat
implementation libs.recyclerview
implementation libs.recyclerview_selection
implementation libs.material
}
allprojects {
repositories {
maven {
url 'https://maven.aliyun.com/repository/jcenter'
}
maven {
url 'https://maven.aliyun.com/repository/central'
}
maven {
url 'https://maven.aliyun.com/repository/google'
}
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
if (options.bootstrapClasspath != null) {
Set<File> fileSet = options.bootstrapClasspath.getFiles()
List<File> newFileList = new ArrayList<>();
newFileList.add(new File("./libs/framework.jar"))
newFileList.addAll(fileSet)
options.bootstrapClasspath = files(
newFileList.toArray()
)
}
}
}
}