Skip to content

Commit f5aed15

Browse files
committed
Remove the broken resources placeholder plugin
1 parent fc5d192 commit f5aed15

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

app/build.gradle

-6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ apply plugin: 'com.android.application'
33
apply plugin: 'kotlin-android'
44
apply plugin: 'kotlin-kapt'
55

6-
apply plugin: 'de.timfreiheit.resourceplaceholders.plugin'
7-
86
android {
97
namespace 'io.github.deweyreed.clipboardcleaner'
108
compileSdk 33
@@ -37,10 +35,6 @@ android {
3735
}
3836
}
3937

40-
resourcePlaceholders {
41-
files = ['xml/shortcuts.xml']
42-
}
43-
4438
dependencies {
4539
implementation 'androidx.appcompat:appcompat:1.4.2'
4640
implementation 'androidx.cardview:cardview:1.0.0'

app/src/main/res/xml/shortcuts.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<intent
1111
android:action="io.github.deweyreed.clipboardcleaner.action.CLEAN"
1212
android:targetClass="io.github.deweyreed.clipboardcleaner.IntentActivity"
13-
android:targetPackage="${applicationId}" />
13+
android:targetPackage="io.github.deweyreed.clipboardcleaner" />
1414
</shortcut>
1515
<shortcut
1616
android:enabled="true"
@@ -22,6 +22,6 @@
2222
<intent
2323
android:action="io.github.deweyreed.clipboardcleaner.action.CONTENT"
2424
android:targetClass="io.github.deweyreed.clipboardcleaner.IntentActivity"
25-
android:targetPackage="${applicationId}" />
25+
android:targetPackage="io.github.deweyreed.clipboardcleaner" />
2626
</shortcut>
27-
</shortcuts>
27+
</shortcuts>

build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ buildscript {
1010
dependencies {
1111
classpath 'com.android.tools.build:gradle:7.3.0'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
13-
classpath 'de.timfreiheit.resourceplaceholders:placeholders:0.4'
1413

1514
// NOTE: Do not place your application dependencies here; they belong
1615
// in the individual module build.gradle files

0 commit comments

Comments
 (0)