Skip to content

Instantly share code, notes, and snippets.

@mosil
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mosil/cd4640d69f6d75937d37 to your computer and use it in GitHub Desktop.
Save mosil/cd4640d69f6d75937d37 to your computer and use it in GitHub Desktop.
android_m_preview
//請搭配 http://blog.mosil.biz/2015/06/android-m-preview-developer-issue/
apply plugin: 'com.android.application'
android {
buildToolsVersion '23.0.0 rc2'
defaultConfig {
applicationId "biz.mosil.sample.android"
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
preview {
minSdkVersion 'android-MNC'
targetSdkVersion 'android-MNC'
compileSdkVersion 'android-MNC'
}
oirgin {
minSdkVersion 9
targetSdkVersion 22
compileSdkVersion 22
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment