|
|
@@ -0,0 +1,64 @@
|
|
|
+apply plugin: 'com.android.application'
|
|
|
+
|
|
|
+
|
|
|
+android {
|
|
|
+ compileSdkVersion 25
|
|
|
+ buildToolsVersion "25.0.3"
|
|
|
+
|
|
|
+
|
|
|
+ defaultConfig {
|
|
|
+ applicationId "com.uas.libsjar"
|
|
|
+ minSdkVersion 16
|
|
|
+ targetSdkVersion 25
|
|
|
+ versionCode 1
|
|
|
+ versionName "1.0"
|
|
|
+
|
|
|
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
+
|
|
|
+ }
|
|
|
+ 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 'com.android.support:appcompat-v7:25.3.1'
|
|
|
+ testCompile 'junit:junit:4.12'
|
|
|
+ compile files('libs/android-async-http-1.4.5.jar')
|
|
|
+ compile files('libs/asmack.jar')
|
|
|
+ compile files('libs/BaiduLBS_Android.jar')
|
|
|
+ compile files('libs/bugly_crash_release.jar')
|
|
|
+ compile files('libs/cyberplayer-sdk.jar')
|
|
|
+ compile files('libs/flexjson-2.1.jar')
|
|
|
+ compile files('libs/httpmime-4.2.jar')
|
|
|
+ compile files('libs/lite-orm-1.7.0.jar')
|
|
|
+ compile files('libs/Msc.jar')
|
|
|
+ compile files('libs/nineoldandroids.jar')
|
|
|
+ compile files('libs/org.xbill.dns_2.1.6.jar')
|
|
|
+ compile files('libs/ormlite-android-4.48.jar')
|
|
|
+ compile files('libs/ormlite-core-4.48.jar')
|
|
|
+ compile files('libs/pinyin4j-2.5.0.jar')
|
|
|
+ compile files('libs/pushservice-5.3.0.99.jar')
|
|
|
+ compile files('libs/SocialSDK_QQZone_3.jar')
|
|
|
+ compile files('libs/SocialSDK_Sina.jar')
|
|
|
+ compile files('libs/SocialSDK_umengqq.jar')
|
|
|
+ compile files('libs/SocialSDK_umengsina.jar')
|
|
|
+ compile files('libs/SocialSDK_umengwx.jar')
|
|
|
+ compile files('libs/SocialSDK_WeiXin_2.jar')
|
|
|
+ compile files('libs/Sunflower.jar')
|
|
|
+ compile files('libs/umeng_social_apiv6.0.0.jar')
|
|
|
+ compile files('libs/umeng_social_netv6.0.0.jar')
|
|
|
+ compile files('libs/umeng_social_viewv6.0.0.jar')
|
|
|
+ compile files('libs/universal-image-loader-1.9.0.jar')
|
|
|
+ compile files('libs/volley.jar')
|
|
|
+ compile files('libs/weiboSDKCore_3.1.4.jar')
|
|
|
+ compile files('libs/xutils.jar')
|
|
|
+ compile files('libs/zhy_treeview.jar')
|
|
|
+}
|