-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.gradle
42 lines (38 loc) · 1.19 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
apply plugin: 'com.android.library'
android {
//compileSdkVersion 25
//buildToolsVersion "25.0.3"
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi", "armeabi-v7a", "x86_64"
}
manifestPlaceholders = [
//测试环境
GETUI_APP_ID : "4PrFb29HZA7ROkO1wHNXB8",
GETUI_APP_KEY : "W5s9oBaCLYAV6dPRFbBa1",
GETUI_APP_SECRET : "YvmsRi08aU94oV92CQjlC"
]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
//compile 'com.android.support:appcompat-v7:25.3.1'
compile "com.android.support:appcompat-v7:23.0.1"
compile 'com.facebook.react:react-native:+'
compile 'com.getui:sdk:2.11.1.0'
compile 'com.meizu.flyme.internet:push-internal:3.4.2@aar'
compile 'com.huawei.android.hms:push:2.5.2.300'
}