New version 1.3.3

This commit is contained in:
2019-08-16 19:04:01 +02:00
parent 0092bc6530
commit 3c5ce5230f
12 changed files with 697 additions and 506 deletions

View File

@@ -1,13 +1,12 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
compileSdkVersion 29
defaultConfig {
applicationId "com.jkanetwork.st.calendariodefrases"
minSdkVersion 15
targetSdkVersion 27
versionName "1.3.2"
minSdkVersion 19 //KitKat
targetSdkVersion 29
versionName "1.3.3"
// Sube automáticamente la build en cada
def versionPropsFile = file('version.count')
def Properties versionProps = new Properties()
@@ -19,7 +18,7 @@ android {
versionProps['VERSION_CODE'] = code.toString()
versionProps.store(versionPropsFile.newWriter(), null)
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
@@ -37,11 +36,11 @@ dependencies {
/*androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})*/
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support:support-compat:27.1.0'
implementation 'com.android.support:design:27.1.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.github.marcohc:robotocalendarview:3.1.1'
implementation 'com.google.android.gms:play-services-ads:12.0.1'
implementation 'com.google.android.gms:play-services-ads:18.1.1'
//compile 'com.tappx.sdk.android:tappx-sdk:3.+'
//testImplementation 'junit:junit:4.12'
}