使用說明
復(fù)制后粘貼到AndroidStudio(IDE)中覆蓋掉 build.gradle 文件履恩,然后點(diǎn)擊同步按鈕即可懂拾。
修復(fù)以下兼容(本次更新2014年12月1日)
androidannotations 3.2框架最新版本
android Studio 1.0 RC2
解決問題
錯(cuò)誤: Could not find the AndroidManifest.xml file, going up from path
//打開app build.gradle文件加入以下代碼
/**
- AA注解Apt配置
*/
apt {
arguments {
androidManifestFile variant.processResources.manifestFile
resourcePackageName AppPackageName
}
}
錯(cuò)誤: Could not find property ‘processResources’ 1.
//打開全局文件 build.gradle加入以下代碼
classpath 'com.android.tools.build:gradle:1.0.0-rc1'
//替換
classpath 'com.android.tools.build:gradle:0.14.2'
build.gradle完整源碼
第一步驟窗轩,打開app moder中的 build.gradle
文件
/**
*排除
*/
android {
packagingOptions {
exclude 'META-INF/LICENSE.txt'
}
}
/**
- .so文件的導(dǎo)入
/
task copyNativeLibs(type: Copy) {
from fileTree(dir: 'libs', include: 'armeabi/.so') into 'build/lib'
from fileTree(dir: 'libs', include: 'armeabi-v7a/.so') into 'build/lib'
from fileTree(dir: 'libs', include: 'x86/.so') into 'build/lib'
}
/**
- 支持庫
/
dependencies {
compile fileTree(dir: 'libs', include: ['.jar'])
compile 'com.android.support:appcompat-v7:21.0.0'
//框架系列
apt 'org.androidannotations:androidannotations:3.2+' // AA注解庫1
compile 'org.androidannotations:androidannotations-api:3.2+' // AA注解庫2
// //請(qǐng)求系列
// compile 'com.loopj.android:android-async-http:1.4.5+' //Android異步Http請(qǐng)求
// //動(dòng)畫系列
// compile 'com.nineoldandroids:library:2.4.0+' //Nine Old Androids 將Android 3.0(Honeycomb)所有動(dòng)畫API兼容到Android1.0
// //緩存系列
// compile 'com.squareup.picasso:picasso:2.3.3' //picasso圖片緩存
// //控件系列
//// compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.1' //按鈕上顯示進(jìn)度狀態(tài)。(最低需要andriud版本10)
//// compile 'de.hdodenhof:circleimageview:1.1.1' //CircleImageView實(shí)現(xiàn)帶邊框圓形頭像.
//// compile 'com.daimajia.numberprogressbar:library:1.1@aar' //NumberProgressBar文字進(jìn)度跟隨進(jìn)度條展示。(最低需要andriud版本10)
//// compile 'info.hoang8f:fbutton:1.0.5' //FButton FButton的是Android與“平板UI”的概念自定義按鈕崔兴。(最低需要andriud版本9)
//// compile 'pl.droidsonroids.gif:android-gif-drawable:1.0.+' //用jni實(shí)現(xiàn)的五督,
//// compile 'com.nhaarman.supertooltips:library:3.0.+' //supertooltips 帶動(dòng)畫效果的Tips顯示
//// compile 'org.holoeverywhere:slidingmenu:1.4.2+' //SlidingMenu (依賴actiomnBar)滑出式菜單藏否,通過拖動(dòng)屏幕邊緣滑出菜單.
// //工具系列
// compile 'com.alibaba:fastjson:+' //fastjson 目前比較快的json解析庫
}
第二步驟,打開項(xiàng)目空間全局文件 build.gradle 復(fù)制以下
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
classpath 'com.android.tools.build:gradle:0.14.2'
}
}
allprojects {
repositories {
mavenCentral()
}
}
注意事項(xiàng)
dependencies 代碼塊里面的jar包配置是根據(jù)自己的需要而定的充包,沒用的jar包配置或者android系統(tǒng)版本不支持的jar包建議注釋掉副签,以免沖突無法構(gòu)建。