File tree 6 files changed +11
-12
lines changed
java/io/github/deweyreed/clipboardcleaner
6 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ apply plugin: 'kotlin-kapt'
6
6
apply plugin : ' de.timfreiheit.resourceplaceholders.plugin'
7
7
8
8
android {
9
+ namespace ' io.github.deweyreed.clipboardcleaner'
9
10
compileSdk 33
10
11
defaultConfig {
11
12
applicationId " io.github.deweyreed.clipboardcleaner"
@@ -24,17 +25,14 @@ android {
24
25
release {
25
26
minifyEnabled true
26
27
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'
30
29
}
31
30
}
32
31
33
32
buildFeatures {
34
33
viewBinding true
35
34
}
36
-
37
- lintOptions {
35
+ lint {
38
36
abortOnError false
39
37
}
40
38
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<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" >
5
4
6
5
<!-- Restart BootService -->
7
6
<uses-permission android : name =" android.permission.RECEIVE_BOOT_COMPLETED" />
113
112
</service >
114
113
</application >
115
114
116
- </manifest >
115
+ </manifest >
Original file line number Diff line number Diff line change 1
1
package io.github.deweyreed.clipboardcleaner
2
2
3
+ import android.annotation.SuppressLint
3
4
import android.app.Application
4
5
import android.content.Context
5
6
import android.os.Build
@@ -49,6 +50,7 @@ class ClipboardCleaner : Application() {
49
50
}
50
51
51
52
companion object {
53
+ @SuppressLint(" StaticFieldLeak" )
52
54
lateinit var app: ClipboardCleaner
53
55
}
54
56
}
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ class MainActivity : AppCompatActivity() {
106
106
Uri .parse(" https://github.com/DeweyReed/ClipboardCleaner" )
107
107
)
108
108
)
109
- } catch (e : Exception ) {
109
+ } catch (_ : Exception ) {
110
110
}
111
111
true
112
112
}
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.6.21 '
4
+ ext. kotlin_version = ' 1.7.10 '
5
5
repositories {
6
6
google()
7
7
gradlePluginPortal()
8
8
mavenCentral()
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:7.1.3 '
11
+ classpath ' com.android.tools.build:gradle:7.3.0 '
12
12
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
13
13
classpath ' de.timfreiheit.resourceplaceholders:placeholders:0.4'
14
14
Original file line number Diff line number Diff line change 13
13
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
14
14
# org.gradle.parallel=true
15
15
# Wed Mar 07 21:24:28 CST 2018
16
- android.enableJetifier =true
16
+ android.nonTransitiveRClass =true
17
17
android.useAndroidX =true
You can’t perform that action at this time.
0 commit comments