Skip to content

Commit

Permalink
Release 9.0.0 (#72)
Browse files Browse the repository at this point in the history
* Update README.md

* Update CHANGELOG.md

* Update build.gradle

* migrate to AndroidX
  • Loading branch information
prempalsingh authored Sep 2, 2021
1 parent c30c612 commit b266aae
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 26 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# PhotoEditor SDK - Changelog

## v9.0.0

### Changed

* Migrated to AndroidX

__________________________________________________________________
🚨 __We do not plan to release new feature updates to v8. Only the most critical bug fixes will be back-ported to v8.__
__________________________________________________________________


## v8.3.4

### Fixed
Expand Down
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<img src="https://img.shields.io/badge/platform-android-2DC25C.svg?style=flat">
</a>
<a href="https://artifactory.img.ly/artifactory/imgly/ly/img/android/pesdk/">
<img src="https://img.shields.io/badge/VERSION-8.3.4-007ec6.svg?style=flat" alt="Maven">
<img src="https://img.shields.io/badge/VERSION-9.0.0-007ec6.svg?style=flat" alt="Maven">
</a>
<a href="http://twitter.com/PhotoEditorSDK">
<img src="https://img.shields.io/badge/[email protected]?style=flat" alt="Twitter">
Expand Down Expand Up @@ -82,13 +82,6 @@ The PhotoEditor core library for Android. Containing the OpenGL and toolkit impl
__UI Component__ <br/>
The default UI components consisting of LivePreview and Editor Activity.

### Dependencies

Two Google support libraries needed or used by the SDK.

* com.android.support:recyclerview-v7
* com.android.support:support-annotations


## Documentation

Expand Down Expand Up @@ -126,7 +119,7 @@ buildscript {
maven { url "https://artifactory.img.ly/artifactory/imgly" }
}
dependencies {
classpath 'ly.img.android.pesdk:plugin:8.3.2'
classpath 'ly.img.android.pesdk:plugin:9.0.0'
}
}
Expand Down Expand Up @@ -156,9 +149,6 @@ imglyConfig {
licencePath 'pesdk_android_license'
}
// If you are using another supportLibVersion ('com.android.support') please change this version here our update your own supportLibVersion
supportLibVersion "28.0.0"
// Define the modules you are need
modules {
// Add all the UI modules you are need
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ android {
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

resValue 'string', 'pesdk_version', "v$pesdk_version"
}
Expand All @@ -73,5 +73,5 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
}
8 changes: 4 additions & 4 deletions app/src/main/res/layout/imgly_popup_brush_preview.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="25"/>
Expand All @@ -31,7 +31,7 @@
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="50">
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="30"/>
Expand All @@ -43,12 +43,12 @@
android:id="@+id/brushToolPreview"
style="@style/Imgly.PESDK.Editor.Popup.Brush.BrushToolPreview"/>
</RelativeLayout>
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="30"/>
</LinearLayout>
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="25"/>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext.kotlin_version = '1.4.10'
ext.pesdk_version = '8.3.4' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
ext.pesdk_version = '9.0.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
repositories {
google()
gradlePluginPortal()
Expand Down
4 changes: 2 additions & 2 deletions example_brush_presets_panel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ android {
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

resValue 'string', 'pesdk_version', "v$pesdk_version"
}
Expand All @@ -73,5 +73,5 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import android.animation.AnimatorListenerAdapter
import android.animation.AnimatorSet
import android.animation.ObjectAnimator
import android.content.Context
import android.support.annotation.MainThread
import androidx.annotation.MainThread
import android.view.View
import com.photoeditorsdk.android.app.R
import ly.img.android.pesdk.annotations.OnEvent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="25"/>
Expand All @@ -31,7 +31,7 @@
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="50">
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="30"/>
Expand All @@ -44,12 +44,12 @@
android:id="@+id/brushToolPreview"
style="@style/Imgly.PESDK.Editor.Popup.Brush.BrushToolPreview"/>
</RelativeLayout>
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="30"/>
</LinearLayout>
<android.support.v4.widget.Space
<android.widget.Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="25"/>
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.useAndroidX=true

0 comments on commit b266aae

Please sign in to comment.