forked from byhook/opengles4android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
23 lines (21 loc) · 884 Bytes
/
config.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ext {
android = [
compileSdkVersion: 29,
buildToolsVersion: "29.0.2",
applicationId : "com.onzhou.opengles",
minSdkVersion : 18,
targetSdkVersion : 29,
versionCode : 1,
versionName : "1.0.0"
]
dependencies = [
"design" : 'com.android.support:design:25.3.1',
"appcompat-v7" : 'com.android.support:appcompat-v7:25.3.1',
"annotation" : 'com.android.support:support-annotations:25.3.1',
"junit" : 'junit:junit:4.12',
"rxjava" : 'io.reactivex.rxjava2:rxjava:2.2.0',
"rxandroid" : 'io.reactivex.rxjava2:rxandroid:2.1.0',
"arouter-api" : 'com.alibaba:arouter-api:1.4.0',
"arouter-compiler": 'com.alibaba:arouter-compiler:1.2.2'
]
}