∙ 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
32 lines
750 B
Groovy
32 lines
750 B
Groovy
apply plugin: 'com.android.library'
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '22'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 22
|
|
versionName "1.0"
|
|
versionCode 1
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
resources.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
renderscript.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
assets.srcDirs = ['assets']
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.nineoldandroids:library:2.4.0'
|
|
} |