標籤:
1.引入對android-apt的依賴。在全域build.gradle中檔案中添加以下代碼。(Project目錄下的build.gradle)
repositories { mavenCentral() } dependencies { classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.2+‘ }}
2.設定android-apt參數 。注意把包名換成你的應用的。另外outputs[0]是在新的android-studio的版本中才需要加的。(Module目錄下的build.gradle)
apply plugin: ‘android-apt‘ //添加android-apt外掛程式
apt { arguments { androidManifestFile variant.outputs[0].processResources.manifestFile//androidManifestFile variant.processResources.manifestFile(老版本寫法) resourcePackageName "你的包名" }}
3.使用apt引入對androidannotation的依賴。(Module目錄下的build.gradle)
dependencies { apt ‘org.androidannotations:androidannotations:3.0+‘ compile ‘org.androidannotations:androidannotations-api:3.0+‘ compile fileTree(dir: ‘libs‘, include: [‘*.jar‘]) compile ‘com.android.support:appcompat-v7:21.0.3‘}
4.最後的build檔案應該是這樣的。
// Project目錄下的build.gradle
buildscript { repositories { mavenCentral() } dependencies { classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.2+‘ }}
//Module目錄下的build.gradle
apply plugin: ‘com.android.application‘apply plugin: ‘android-apt‘ android { compileSdkVersion 21 buildToolsVersion 21.1.2 defaultConfig { applicationId com.tanglikang.annotationtest minSdkVersion 9 targetSdkVersion 21 versionCode 1 versionName 1.0 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.pro‘ } }} apt { arguments { androidManifestFile variant.outputs[0].processResources.manifestFile resourcePackageName com.tanglikang.annotationtest }} dependencies { apt org.androidannotations:androidannotations:3.0+ // add these compile org.androidannotations:androidannotations-api:3.0+ // two lines compile fileTree(dir: ‘libs‘, include: [‘*.jar‘]) compile ‘com.android.support:appcompat-v7:21.0.3‘}
5.重新build工程,系統會自動下載依賴的第三方庫。然後就可以使用AndroidAnnotation了。
AndroidAnnotations配置--Android studio