Android APP Develop 代码-Java语言-立哥开发
程序员文章站
2022-05-04 09:22:06
//Copy right Jacky Zong . Vision 2.2.1// All Rights reservedapply plugin: ‘com.android.application’android {compileSdkVersion 23buildToolsVersion “23.0.1”defaultConfig { applicationId "com.Google.app" minSdkVersion 14 targetSdkVersion 23...
//Copy right Jacky Zong . Vision 2.2.1
// All Rights reserved
apply plugin: ‘com.android.application’
android {
compileSdkVersion 23
buildToolsVersion “23.0.1”
defaultConfig {
applicationId "com.Google.app"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "2.2.1"
}
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:23.1.1’
compile ‘com.android.support:design:23.1.1’
compile files('libs/SocialSDK_QQZone_1.jar')
compile files('libs/SocialSDK_QQZone_2.jar')
compile files('libs/SocialSDK_QQZone_3.jar')
compile files('libs/SocialSDK_Sina.jar')
compile files('libs/SocialSDK_WeiXin_1.jar')
compile files('libs/SocialSDK_WeiXin_2.jar')
compile files('libs/umeng_social_sdk.jar')
compile 'com.jakewharton:butterknife:5.1.1'
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
compile 'com.squareup.okhttp:okhttp:2.0.0'
// gson数据解析
compile 'com.google.code.gson:gson:2.2.4'
// 个推推送
compile files('libs/GetuiExt-2.0.3.jar')
compile files('libs/GetuiSDK2.6.1.0.jar')
}
本文地址:https://blog.csdn.net/weixin_45806384/article/details/107405162
下一篇: IOS开发之各种收起键盘的方法