From 9933db974edff1c056044fba51afdf4083b520e3 Mon Sep 17 00:00:00 2001 From: Arkadip Bhattacharya Date: Fri, 29 May 2020 14:46:29 +0530 Subject: [PATCH] Release: 1.2.3 - Gradle plugin upgraded to 4.0.0 - Kotlin removed - App size reduced Signed-off-by: Arkadip Bhattacharya --- .idea/jarRepositories.xml | 30 ++++++++++++++++++++++++ app/build.gradle | 6 +---- build.gradle | 4 +--- gradle/wrapper/gradle-wrapper.properties | 4 ++-- 4 files changed, 34 insertions(+), 10 deletions(-) create mode 100644 .idea/jarRepositories.xml diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..e34606c --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 91b0406..f53852a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,4 @@ apply plugin: 'com.android.application' -apply plugin: 'kotlin-android-extensions' -apply plugin: 'kotlin-android' android { compileSdkVersion 29 @@ -11,7 +9,7 @@ android { minSdkVersion 21 targetSdkVersion 29 versionCode 1 - versionName '1.2.2' + versionName '1.2.3' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -48,8 +46,6 @@ dependencies { implementation 'androidx.camera:camera-view:1.0.0-alpha11' implementation 'org.pytorch:pytorch_android:1.5.0' implementation 'org.pytorch:pytorch_android_torchvision:1.5.0' - implementation "androidx.core:core-ktx:1.3.0" - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" } repositories { mavenCentral() diff --git a/build.gradle b/build.gradle index b72c491..fcce6bd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.72' repositories { google() @@ -9,8 +8,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:3.6.3' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'com.android.tools.build:gradle:4.0.0' // NOTE: Do not place your application dependencies here; they belong diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 581c48e..dedb30c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Fri May 22 11:04:58 IST 2020 +#Fri May 29 13:53:48 IST 2020 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip