Skip to content

Commit 52bf999

Browse files
committed
- adjust package name of icon addon to fix detekt failure
1 parent 0304c48 commit 52bf999

File tree

7 files changed

+2342
-2340
lines changed

7 files changed

+2342
-2340
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,13 @@ implementation 'com.mikepenz:ionicons-typeface:2.0.1.7-kotlin@aar'
9595
implementation 'com.mikepenz:pixeden-7-stroke-typeface:1.2.0.5-kotlin@aar'
9696
implementation 'com.mikepenz:material-design-icons-dx-typeface:5.0.1.2-kotlin@aar'
9797
implementation 'com.mikepenz:phosphor-typeface:1.0.0.0-kotlin@aar'
98-
implementation 'com.mikepenz:simple-icons-typeface:17.0.0.1@aar'
98+
implementation 'com.mikepenz:simple-icons-typeface:17.0.0.2@aar'
9999
```
100100

101101
## Note
102102

103-
⚠️ The fonts use the `jetpack startup` library to automatically register themself. If `jetpack startup` is disabled, it is required to manually register the fonts. Please find additional details in the [Register fonts](#register-fonts).
103+
⚠️ The fonts use the `jetpack startup` library to automatically register themselves. If `jetpack startup` is disabled,
104+
it is required to manually register the fonts. Please find additional details in the [Register fonts](#register-fonts).
104105

105106
# Usage
106107
## Use as drawable

simple-icons-typeface-library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ android {
2626
minSdkVersion setup.minSdk
2727
targetSdkVersion setup.targetSdk
2828
consumerProguardFiles 'consumer-proguard-rules.pro'
29-
versionCode 170001
30-
versionName "17.0.0.1"
29+
versionCode 170002
30+
versionName "17.0.0.2"
3131

3232
resValue "string", "Simple_Icons_version", "${versionName}"
3333
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-keep class com.mikepenz.iconics.typeface.library.simple_icons.SimpleIcons { *; }
1+
-keep class com.mikepenz.iconics.typeface.library.simpleicons.SimpleIcons { *; }

simple-icons-typeface-library/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<manifest
1818
xmlns:android="http://schemas.android.com/apk/res/android"
1919
xmlns:tools="http://schemas.android.com/tools"
20-
package="com.mikepenz.iconics.typeface.library.simple_icons">
20+
package="com.mikepenz.iconics.typeface.library.simpleicons">
2121

2222
<application>
2323
<provider
@@ -26,8 +26,8 @@
2626
android:exported="false"
2727
tools:node="merge">
2828
<meta-data
29-
android:name="com.mikepenz.iconics.typeface.library.simple_icons.Initializer"
30-
android:value="androidx.startup" />
29+
android:name="com.mikepenz.iconics.typeface.library.simpleicons.Initializer"
30+
android:value="androidx.startup"/>
3131
</provider>
3232
</application>
3333
</manifest>

0 commit comments

Comments
 (0)