updating photo editor SDK to 9.1.0

This commit is contained in:
tibbi 2021-12-03 23:00:01 +01:00
parent ca2d6eba3e
commit 0224dc56c1

View file

@ -16,7 +16,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:7.0.3' classpath 'com.android.tools.build:gradle:7.0.3'
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:9.0.0' classpath 'ly.img.android.pesdk:plugin:9.1.0'
} }
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
@ -29,6 +29,9 @@ allprojects {
google() google()
jcenter() jcenter()
maven { url "https://jitpack.io" } maven { url "https://jitpack.io" }
if (is_proprietary) {
maven { url 'https://artifactory.img.ly/artifactory/imgly' }
}
} }
} }