Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> [AndroidAnnotations框架]AndroidAnnotations的配置介紹

[AndroidAnnotations框架]AndroidAnnotations的配置介紹

編輯:關於android開發

[AndroidAnnotations框架]AndroidAnnotations的配置介紹


一、在AndroidStudio下配置androidannotations

首先,准備好你的project。

AndroidStudio下的androidannotations配置是比較容易的,只需要配置兩個build.gradle就可以。

配置build.gradle
( 1 ) 我們先配置preject目錄下的build.gradle
在buildscript> dependencies>下添加

classpath'com.neenbedankt.gradle.plugins : android-apt : 1.4'

( 2 ) 然後是配置app目錄下的build.gradle
1) 在apply plugin:'com.android.application'下增加一行

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'

2) 定義一個版本的常量,當前最新的版本是3.3.2

def AAVersion = '3.3.2'

3) 添加依賴

dependencies {
 apt "org.androidannotations : androidannotations : $AAVersion"
 compile "org.androidannotations : androidannotations-api : $AAVersion"
 }

4) 添加apt

apt {
    arguments {
        androidManifestFile variant.outputs[0].processResources.manifestFile
    }
 }
然後build一下project,就ok啦~

二、在eclipse下配置androidannotations

下載所需jar包。下載地址,當前最新的版本是3.3.2。解壓壓縮包,拿到androidannotations-api-*.jarandroidannotations-*.jar。導入jar包到工程中。androidannotations-api-*.jar放到工程的libs目錄下,在工程目錄下新建一個目錄compile-libs,將androidannotations-*.jar放到compile-libs目錄下。配置工程。
步驟一: Properties>Java Compiler>在Enable project specific settiongs處打勾,然後設置Compiler compliance level: 1.6
\
步驟二: PrZ喎?http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vcGVydGllcyZndDtKYXZhIENvbXBpbGVyJmd0O0Fubm90YXRpb24gUHJvY2Vzc2luZyZndDvU2kVuYWJsZSBwcm9qZWN0IHNwZWNpZmljIHNldHRpb25nc7SmtPK5tDxiciAvPg0KPGltZyBhbHQ9"" src="http://www.bkjia.com/uploads/allimg/160311/041F95325-1.png" title="\" />
步驟三: Properties>Java Compiler>Annotation Processing>Factory Path>在Enable project specific settiongs處打勾,然後Add JARs->浏覽工程目錄,選擇compile-libs目錄下的androidannotations-*.jar,最後確定就可以。

然後就可以開始使用框架啦~    

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved