Version 1.2.0 - New CustomListAdapter

This commit is contained in:
2017-12-23 14:22:46 +01:00
parent 4dfb028c8b
commit b975108b58
8 changed files with 200 additions and 81 deletions

View File

@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' // apply kotlin android plugin
apply plugin: 'kotlin-android-extensions'
def anko_version = '0.10.1'
def anko_version = '0.10.3'
def kotlin_version = '1.2.10'
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
@@ -19,7 +19,7 @@ android {
versionProps.store(versionPropsFile.newWriter(), null)
// Fin de subir automáticamente la build en cada compilación
versionCode code
versionName "1.1.2"
versionName "1.2.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
@@ -57,4 +57,5 @@ dependencies {
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.google.android.gms:play-services-ads:11.6.2'
testCompile 'junit:junit:4.12'
}
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}