Skip to content

Commit

Permalink
Update version, changelog, build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Jul 4, 2023
1 parent 0825a8a commit fda9367
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
18 changes: 11 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22"
}
}

Expand All @@ -21,27 +21,31 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 28
compileSdkVersion 31
namespace "org.billthefarmer.solver"

defaultConfig {
applicationId "org.billthefarmer.solver"
minSdkVersion 16
targetSdkVersion 28
versionName "1.06"
versionCode 106
targetSdkVersion 31
versionName "1.07"
versionCode 107

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_9
targetCompatibility JavaVersion.VERSION_1_9
}

lintOptions {
disable 'OldTargetApi', 'NonConstantResourceId', 'ExpiredTargetSdkVersion',
'AndroidGradlePluginVersion'
// abortOnError false
}

kotlinOptions {
jvmTarget = '9'
}
}
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-GB/changelog/107.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Update expanded display
1 change: 1 addition & 0 deletions src/main/java/org/billthefarmer/solver/Help.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import java.io.InputStreamReader;

// HelpActivity class
@SuppressWarnings("deprecation")
public class Help extends Activity
{
// On create
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/billthefarmer/solver/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;

@SuppressWarnings("deprecation")
public class Main extends Activity
{
public static final String TAG = "WordleSolver";
Expand Down

0 comments on commit fda9367

Please sign in to comment.