Skip to content

Commit fc5d192

Browse files
committed
Upgrade AGP
1 parent 062a30f commit fc5d192

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

app/build.gradle

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ apply plugin: 'kotlin-kapt'
66
apply plugin: 'de.timfreiheit.resourceplaceholders.plugin'
77

88
android {
9+
namespace 'io.github.deweyreed.clipboardcleaner'
910
compileSdk 33
1011
defaultConfig {
1112
applicationId "io.github.deweyreed.clipboardcleaner"
@@ -24,17 +25,14 @@ android {
2425
release {
2526
minifyEnabled true
2627
shrinkResources true
27-
// TODO: (2021-07-13): proguard-android-optimize.txt removes used resources
28-
// https://issuetracker.google.com/issues/170709331
29-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
28+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
3029
}
3130
}
3231

3332
buildFeatures {
3433
viewBinding true
3534
}
36-
37-
lintOptions {
35+
lint {
3836
abortOnError false
3937
}
4038
}

app/src/main/AndroidManifest.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools"
4-
package="io.github.deweyreed.clipboardcleaner">
3+
xmlns:tools="http://schemas.android.com/tools">
54

65
<!-- Restart BootService -->
76
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
@@ -113,4 +112,4 @@
113112
</service>
114113
</application>
115114

116-
</manifest>
115+
</manifest>

app/src/main/java/io/github/deweyreed/clipboardcleaner/ClipboardCleaner.kt

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package io.github.deweyreed.clipboardcleaner
22

3+
import android.annotation.SuppressLint
34
import android.app.Application
45
import android.content.Context
56
import android.os.Build
@@ -49,6 +50,7 @@ class ClipboardCleaner : Application() {
4950
}
5051

5152
companion object {
53+
@SuppressLint("StaticFieldLeak")
5254
lateinit var app: ClipboardCleaner
5355
}
5456
}

app/src/main/java/io/github/deweyreed/clipboardcleaner/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class MainActivity : AppCompatActivity() {
106106
Uri.parse("https://github.com/DeweyReed/ClipboardCleaner")
107107
)
108108
)
109-
} catch (e: Exception) {
109+
} catch (_: Exception) {
110110
}
111111
true
112112
}

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.6.21'
4+
ext.kotlin_version = '1.7.10'
55
repositories {
66
google()
77
gradlePluginPortal()
88
mavenCentral()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.1.3'
11+
classpath 'com.android.tools.build:gradle:7.3.0'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
classpath 'de.timfreiheit.resourceplaceholders:placeholders:0.4'
1414

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1414
# org.gradle.parallel=true
1515
#Wed Mar 07 21:24:28 CST 2018
16-
android.enableJetifier=true
16+
android.nonTransitiveRClass=true
1717
android.useAndroidX=true

0 commit comments

Comments
 (0)