Skip to content

Commit

Permalink
- [release] v5.5.0-b01
Browse files Browse the repository at this point in the history
- [typefaces] recompile all typefaces with latest core lib (make typeface-api runtime dep)
  • Loading branch information
mikepenz committed May 30, 2024
1 parent 53d1341 commit 6c3fdc6
Show file tree
Hide file tree
Showing 21 changed files with 58 additions and 60 deletions.
40 changes: 19 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,8 @@

## Latest releases 🛠

- Kotlin Next Gen | [v5.4.0](https://github.com/mikepenz/Android-Iconics/tree/v5.4.0)
- Kotlin | [v4.0.2](https://github.com/mikepenz/Android-Iconics/tree/v4.0.2)
- Java AndroidX | [v3.2.5](https://github.com/mikepenz/Android-Iconics/tree/v3.2.5)
- Java Appcompat | [v3.0.4](https://github.com/mikepenz/Android-Iconics/tree/v3.0.4)
- Kotlin | [v5.4.0](https://github.com/mikepenz/Android-Iconics/tree/v5.4.0)
- Pre-Release | [v5.5.0-b01](https://github.com/mikepenz/Android-Iconics/tree/v5.5.0-b01)

## 1. Provide the gradle dependency
```gradle
Expand All @@ -79,23 +77,23 @@ implementation "com.mikepenz:iconics-views:${latestAndroidIconicsRelease}"
> Note: v5.1.x or newer requires the latest font versions
```gradle
implementation 'com.mikepenz:google-material-typeface:4.0.0.2-kotlin@aar'
implementation 'com.mikepenz:google-material-typeface-{outlined|rounded|sharp}:4.0.0.1-kotlin@aar'
implementation 'com.mikepenz:material-design-iconic-typeface:2.2.0.8-kotlin@aar'
implementation 'com.mikepenz:fontawesome-typeface:5.9.0.2-kotlin@aar'
implementation 'com.mikepenz:octicons-typeface:11.1.0.0-kotlin@aar'
implementation 'com.mikepenz:meteocons-typeface:1.1.0.7-kotlin@aar'
implementation 'com.mikepenz:community-material-typeface:7.0.96.0-kotlin@aar' // note 5.3.45.1 and newer alphabetically sorts, and merges in 3 sections
implementation 'com.mikepenz:weather-icons-typeface:2.0.10.7-kotlin@aar'
implementation 'com.mikepenz:typeicons-typeface:2.0.7.7-kotlin@aar'
implementation 'com.mikepenz:entypo-typeface:1.0.0.7-kotlin@aar'
implementation 'com.mikepenz:devicon-typeface:2.0.0.7-kotlin@aar'
implementation 'com.mikepenz:foundation-icons-typeface:3.0.0.7-kotlin@aar'
implementation 'com.mikepenz:ionicons-typeface:2.0.1.7-kotlin@aar'
implementation 'com.mikepenz:pixeden-7-stroke-typeface:1.2.0.5-kotlin@aar'
implementation 'com.mikepenz:material-design-icons-dx-typeface:5.0.1.2-kotlin@aar'
implementation 'com.mikepenz:phosphor-typeface:1.0.0.0-kotlin@aar'
implementation 'com.mikepenz:simple-icons-typeface:17.0.0.2@aar'
implementation 'com.mikepenz:google-material-typeface:4.0.0.3-kotlin@aar'
implementation 'com.mikepenz:google-material-typeface-{outlined|rounded|sharp}:4.0.0.2-kotlin@aar'
implementation 'com.mikepenz:material-design-iconic-typeface:2.2.0.9-kotlin@aar'
implementation 'com.mikepenz:fontawesome-typeface:5.9.0.3-kotlin@aar'
implementation 'com.mikepenz:octicons-typeface:11.1.0.1-kotlin@aar'
implementation 'com.mikepenz:meteocons-typeface:1.1.0.8-kotlin@aar'
implementation 'com.mikepenz:community-material-typeface:7.0.96.1-kotlin@aar' // note 5.3.45.1 and newer alphabetically sorts, and merges in 3 sections
implementation 'com.mikepenz:weather-icons-typeface:2.0.10.8-kotlin@aar'
implementation 'com.mikepenz:typeicons-typeface:2.0.7.8-kotlin@aar'
implementation 'com.mikepenz:entypo-typeface:1.0.0.8-kotlin@aar'
implementation 'com.mikepenz:devicon-typeface:2.0.0.8-kotlin@aar'
implementation 'com.mikepenz:foundation-icons-typeface:3.0.0.8-kotlin@aar'
implementation 'com.mikepenz:ionicons-typeface:2.0.1.8-kotlin@aar'
implementation 'com.mikepenz:pixeden-7-stroke-typeface:1.2.0.6-kotlin@aar'
implementation 'com.mikepenz:material-design-icons-dx-typeface:5.0.1.3-kotlin@aar'
implementation 'com.mikepenz:phosphor-typeface:1.0.0.1-kotlin@aar'
implementation 'com.mikepenz:simple-icons-typeface:17.0.0.3@aar'
```

> [!WARNING]
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {

ext {
release = [
versionName: "5.5.0",
versionName: "5.5.0-b01",
versionCode: 50500
]

Expand Down
4 changes: 2 additions & 2 deletions community-material-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 70960
versionName "7.0.96.0-kotlin"
versionCode 70961
versionName "7.0.96.1-kotlin"

resValue "string", "community_material_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions devicon-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 20007
versionName "2.0.0.7-kotlin"
versionCode 20008
versionName "2.0.0.8-kotlin"

resValue "string", "devicon_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions entypo-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 10007
versionName "1.0.0.7-kotlin"
versionCode 10008
versionName "1.0.0.8-kotlin"

resValue "string", "entypo_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions fontawesome-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 51330
versionName "5.13.3.0-kotlin"
versionCode 51331
versionName "5.13.3.1-kotlin"

resValue "string", "fontawesome_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions foundation-icons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 30007
versionName "3.0.0.7-kotlin"
versionCode 30008
versionName "3.0.0.8-kotlin"

resValue "string", "foundation_version", "${versionName}"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 40002
versionName "4.0.0.2-kotlin"
versionCode 40003
versionName "4.0.0.3-kotlin"

resValue "string", "googlematerial_version", "${versionName}"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 40001
versionName "4.0.0.1-kotlin"
versionCode 40002
versionName "4.0.0.2-kotlin"

resValue "string", "googlematerial_version", "${versionName}"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 40001
versionName "4.0.0.1-kotlin"
versionCode 40002
versionName "4.0.0.2-kotlin"

resValue "string", "googlematerial_version", "${versionName}"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 40001
versionName "4.0.0.1-kotlin"
versionCode 40002
versionName "4.0.0.2-kotlin"

resValue "string", "googlematerial_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions ionicons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 20107
versionName "2.0.1.7-kotlin"
versionCode 20108
versionName "2.0.1.8-kotlin"

resValue "string", "iconics_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions material-design-dx-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 50012
versionName "5.0.1.2-kotlin"
versionCode 50013
versionName "5.0.1.3-kotlin"

resValue "string", "materialdesigndx_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions material-design-iconic-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 22008
versionName "2.2.0.8-kotlin"
versionCode 22009
versionName "2.2.0.9-kotlin"

resValue "string", "materialdesigniconic_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions meteocons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 11007
versionName "1.1.0.7-kotlin"
versionCode 11008
versionName "1.1.0.8-kotlin"

resValue "string", "meteocons_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions octicons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 111008
versionName "11.1.0.0-kotlin"
versionCode 111009
versionName "11.1.0.9-kotlin"

resValue "string", "octicons_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions phosphor-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 10000
versionName "1.0.0.0-kotlin"
versionCode 10001
versionName "1.0.0.1-kotlin"

resValue "string", "phosphor_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions pixeden-7-stroke-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 12005
versionName "1.2.0.5-kotlin"
versionCode 12006
versionName "1.2.0.6-kotlin"

resValue "string", "pixeden7_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions simple-icons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 170002
versionName "17.0.0.2"
versionCode 170003
versionName "17.0.0.3"

resValue "string", "Simple_Icons_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions typeicons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 20707
versionName "2.0.7.7-kotlin"
versionCode 20708
versionName "2.0.7.8-kotlin"

resValue "string", "typeicons_version", "${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions weather-icons-typeface-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdkVersion setup.minSdk
targetSdkVersion setup.targetSdk
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 20107
versionName "2.0.10.7-kotlin"
versionCode 20108
versionName "2.0.10.8-kotlin"

resValue "string", "weathericons_version", "${versionName}"
}
Expand Down

0 comments on commit 6c3fdc6

Please sign in to comment.