AndroidAnnotations配置--Android studio

來源:互聯網
上載者:User

標籤:

 

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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.