Skip to content

Commit

Permalink
Bump to SDK 2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CheZhongSdk committed Feb 12, 2024
1 parent 6bfef75 commit 1a5d331
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Examples/Example-Java/app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#A18EF0</color>
<color name="colorPrimaryDark">#192550</color>
<color name="colorAccent">#81DBA2</color>
<color name="colorPrimary">@color/brandLilac</color>
<color name="colorPrimaryDark">@color/brandMagnetic</color>
<color name="colorAccent">@color/brandMint</color>
<color name="divider">#BEBEBE</color>
<color name="divider_text">#BEBEBE</color>
</resources>
3 changes: 2 additions & 1 deletion Examples/Example-Java/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="colorSurface">@color/colorAccent</item>
</style>

</resources>
2 changes: 1 addition & 1 deletion Examples/Example-Java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {

ext.zettle_version = '2.6.7'
ext.zettle_version = '2.11.1'

apply from: 'zettleSDK.gradle'

Expand Down
3 changes: 1 addition & 2 deletions Examples/Example-Kotlin/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.zettle.payments.android.kotlin_example">
xmlns:tools="http://schemas.android.com/tools">

<application
android:name=".MainApplication"
Expand Down
6 changes: 3 additions & 3 deletions Examples/Example-Kotlin/app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#A18EF0</color>
<color name="colorPrimaryDark">#192550</color>
<color name="colorAccent">#81DBA2</color>
<color name="colorPrimary">@color/brandLilac</color>
<color name="colorPrimaryDark">@color/brandMagnetic</color>
<color name="colorAccent">@color/brandMint</color>
<color name="divider">#BEBEBE</color>
<color name="divider_text">#BEBEBE</color>
</resources>
3 changes: 2 additions & 1 deletion Examples/Example-Kotlin/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="colorSurface">@color/colorAccent</item>
</style>

</resources>
2 changes: 1 addition & 1 deletion Examples/Example-Kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
buildscript {

ext.kotlin_version = '1.8.22'
ext.zettle_version = '2.6.7'
ext.zettle_version = '2.11.1'

apply from: 'zettleSDK.gradle'

Expand Down

0 comments on commit 1a5d331

Please sign in to comment.