码迷,mamicode.com
首页 > 移动开发 > 详细

android studio 中配置androidAnnotation 的新版正确配置

时间:2015-07-08 18:32:21      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

apply plugin: ‘com.android.application‘
apply plugin: ‘android-apt‘
def AAVersion = ‘3.2‘

android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc2"

defaultConfig {
applicationId "com.peiandsky.firstandroidstudio"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.pro‘
}
}
}

dependencies {
compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
compile ‘com.android.support:appcompat-v7:22.2.0‘

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

apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName ‘com.peiandsky.firstandroidstudio‘
}
}

android studio 中配置androidAnnotation 的新版正确配置

标签:

原文地址:http://www.cnblogs.com/peiandsky/p/4630894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!