updating photo editor SDK, kotlin, commons, gradle

This commit is contained in:
tibbi 2021-08-17 12:20:38 +02:00
parent 66662149a9
commit 43e5b8bb51
2 changed files with 6 additions and 6 deletions

View file

@ -78,7 +78,7 @@ android {
} }
dependencies { dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:0a6688146c' implementation 'com.github.SimpleMobileTools:Simple-Commons:e3c531cbd1'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0' implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
implementation 'it.sephiroth.android.exif:library:1.0.1' implementation 'it.sephiroth.android.exif:library:1.0.1'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.22' implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.22'
@ -113,12 +113,12 @@ if (is_proprietary) {
imglyConfig { imglyConfig {
vesdk { vesdk {
enabled true enabled true
licencePath 'vesdk_license' licensePath 'vesdk_license'
} }
pesdk { pesdk {
enabled true enabled true
licencePath 'pesdk_license' licensePath 'pesdk_license'
} }
modules { modules {

View file

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.5.10' ext.kotlin_version = '1.5.21'
ext.is_proprietary = gradle.startParameter.taskNames.any { task -> task.contains("Proprietary") } ext.is_proprietary = gradle.startParameter.taskNames.any { task -> task.contains("Proprietary") }
repositories { repositories {
@ -13,10 +13,10 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.2.1' classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
if (is_proprietary) { if (is_proprietary) {
classpath 'ly.img.android.pesdk:plugin:8.3.1' classpath 'ly.img.android.pesdk:plugin:8.3.3'
} }
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong