XiMengJianYu/.svn/pristine/b5/b52484ab2cf28f0fe7e6f9696d2db5d820844577.svn-base

48 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2023-04-17 17:58:44 +08:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "com.example.administrator.ximengjianyu"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile files('libs/pinyin4j-2.5.0.jar')
compile project(':cm_utils')
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'com.j256.ormlite:ormlite-android:5.0'
compile 'com.jakewharton:butterknife:8.5.1'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.android.support:support-v4:+'
testCompile 'junit:junit:4.12'
compile 'com.jakewharton:butterknife:+'
compile 'de.greenrobot:eventbus:2.4.0'
compile files('libs/paho-mqtt-client-1.0.1-sources.jar')
compile files('libs/paho-mqtt-client-1.0.1.jar')
}