Created
April 7, 2014 19:10
-
-
Save matsumotius/10032556 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'android' | |
apply plugin: 'android-apt' | |
android { | |
compileSdkVersion 19 | |
buildToolsVersion "19.0.3" | |
defaultConfig { | |
minSdkVersion 9 | |
targetSdkVersion 14 | |
versionCode 1 | |
versionName "1.0" | |
} | |
buildTypes { | |
release { | |
runProguard false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | |
} | |
} | |
} | |
dependencies { | |
apt "org.androidannotations:androidannotations:3.0.1" | |
compile "org.androidannotations:androidannotations-api:3.0.1" | |
compile 'com.android.support:appcompat-v7:+' | |
compile 'com.astuetz:pagerslidingtabstrip:1.0.1' | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
} | |
apt { | |
arguments { | |
androidManifestFile variant.processResources.manifestFile | |
resourcePackageName "com.myatsumoto.somthing" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment