∙ It is a "beta" release, feel free to send you feedback on github.com! ∙ Added Save As! (and rename option) ∙ Added Replace All! ∙ The default encoding now is UTF-16 ∙ Removed donations items, if you want to donate please buy the pro version! ∙ Minor bug fixes
31 lines
505 B
Groovy
31 lines
505 B
Groovy
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:+'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
dependencies {
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '22'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 22
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|