diff --git a/.gitignore b/.gitignore index b97e9ab..31f74f3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,16 @@ *.iml .gradle /local.properties -/.idea/caches -/.idea/libraries -/.idea/modules.xml -/.idea/workspace.xml -/.idea/navEditor.xml -/.idea/assetWizardSettings.xml +/.idea .DS_Store +/build /*/build/ /captures +/Gemfile* .externalNativeBuild .cxx local.properties app/release +.project +.settings +.classpath diff --git a/app/build.gradle b/app/build.gradle index 865d8ed..8c262d8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -16,8 +16,8 @@ android { applicationId "com.torrents_csv_android" minSdk 29 targetSdk 31 - versionCode 5 - versionName "1.0.4" + versionCode 6 + versionName "1.0.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { diff --git a/build.gradle b/build.gradle index 361d0ef..8f32745 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext { - compose_version = '1.2.0-alpha01' + compose_version = '1.1.1' } repositories { @@ -17,8 +17,8 @@ buildscript { } plugins { - id 'com.android.application' version '7.2.0-alpha07' apply false - id 'com.android.library' version '7.2.0-alpha07' apply false + id 'com.android.application' version '7.3.0-alpha09' apply false + id 'com.android.library' version '7.3.0-alpha09' apply false id 'org.jetbrains.kotlin.android' version '1.6.10' apply false id "org.jlleitschuh.gradle.ktlint" version "10.2.1" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e64c419..6f7cdc5 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ +#Sat Apr 23 15:54:24 EDT 2022 distributionBase=GRADLE_USER_HOME +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip distributionPath=wrapper/dists -distributionSha256Sum=de8f52ad49bdc759164f72439a3bf56ddb1589c4cde802d3cec7d6ad0e0ee410 -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip -zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index ca6d5a6..81dabfd 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,8 +5,8 @@ pluginManagement { mavenCentral() } plugins { - id 'com.android.application' version '7.2.0-alpha07' - id 'com.android.library' version '7.2.0-alpha07' + id 'com.android.application' version '7.3.0-alpha09' + id 'com.android.library' version '7.3.0-alpha09' id 'org.jetbrains.kotlin.android' version '1.5.31' } }