Skip to content

Commit

Permalink
v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftyAlex committed Sep 29, 2022
1 parent 7064ae8 commit a8c6ffc
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 18 deletions.
6 changes: 3 additions & 3 deletions samples/unflow-compose/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdk = 31
compileSdk = 32

defaultConfig {
applicationId = "com.unflow.sample.compose"
Expand Down Expand Up @@ -39,7 +39,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = rootProject.extra["compose_version"] as String
kotlinCompilerExtensionVersion = rootProject.extra["compose_compiler_version"] as String
}
packagingOptions {
resources {
Expand All @@ -49,7 +49,7 @@ android {
}

dependencies {
implementation("com.unflow:unflow-ui:1.11.0")
implementation("com.unflow:unflow-ui:1.12.0")

implementation("androidx.compose.ui:ui:${rootProject.extra["compose_version"]}")
implementation("androidx.compose.material:material:${rootProject.extra["compose_version"]}")
Expand Down
9 changes: 5 additions & 4 deletions samples/unflow-compose/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_version = '1.0.1'
compose_version = '1.2.1'
compose_compiler_version = '1.3.1'
kotlin_version = '1.7.10'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"

classpath "com.android.tools.build:gradle:7.2.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Nov 15 17:56:27 GMT 2021
#Thu Sep 29 16:03:20 BST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
4 changes: 2 additions & 2 deletions samples/unflow-java/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdk 31
compileSdk 32

defaultConfig {
applicationId "com.unflow.sample.java"
Expand All @@ -30,7 +30,7 @@ android {
}

dependencies {
implementation 'com.unflow:unflow-ui:1.11.0'
implementation 'com.unflow:unflow-ui:1.12.0'

implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
Expand Down
4 changes: 2 additions & 2 deletions samples/unflow-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ buildscript {
}
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
classpath "com.android.tools.build:gradle:7.2.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
}
}

Expand Down
4 changes: 2 additions & 2 deletions samples/unflow-java/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Nov 15 14:43:18 GMT 2021
#Thu Sep 29 16:13:38 BST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
4 changes: 2 additions & 2 deletions samples/unflow-sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdk 31
compileSdk 32

defaultConfig {
applicationId "com.unflow.sample"
Expand Down Expand Up @@ -32,7 +32,7 @@ android {
}

dependencies {
implementation 'com.unflow:unflow-ui:1.11.0'
implementation 'com.unflow:unflow-ui:1.12.0'

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
Expand Down
2 changes: 1 addition & 1 deletion samples/unflow-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
plugins {
id 'com.android.application' version '7.0.3' apply false
id 'com.android.library' version '7.0.3' apply false
id 'org.jetbrains.kotlin.android' version '1.6.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}

task clean(type: Delete) {
Expand Down

0 comments on commit a8c6ffc

Please sign in to comment.