Skip to content

Commit 431ff42

Browse files
committed
v1.0.3 - removed string resources that could potentially interfere
1 parent c1bccac commit 431ff42

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A library containing over 1000 material vector icons that can be easily used as
1010

1111
- MinSdk 4
1212
- LIVE previews and code completion in the Android Studio Designer (Does NOT work out of the box, see step 0 below!)
13-
- Currently contains 1170 icons
13+
- Currently contains 1170 icons, you can look at them here: (https://materialdesignicons.com/)[https://materialdesignicons.com]
1414
- Configured in less than a minute
1515
- Adds about 200kb to your apk (so a wopping average of __170 bytes per icon__)
1616

@@ -28,7 +28,7 @@ Get the font file [__here__](https://github.com/code-mc/material-icon-lib/blob/m
2828

2929
```groovy
3030
dependencies {
31-
compile 'net.steamcrafted:materialiconlib:1.0.2'
31+
compile 'net.steamcrafted:materialiconlib:1.0.3'
3232
}
3333
```
3434

app/app.iml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@
7171
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dependency-cache" />
7272
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex" />
7373
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex-cache" />
74-
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/net.steamcrafted/materialiconlib/1.0.2/jars" />
74+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/jars" />
75+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars" />
76+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/net.steamcrafted/materialiconlib/1.0.3/jars" />
7577
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" />
7678
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/jacoco" />
7779
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/javaResources" />
@@ -91,6 +93,9 @@
9193
</content>
9294
<orderEntry type="jdk" jdkName="Android API 22 Platform" jdkType="Android SDK" />
9395
<orderEntry type="sourceFolder" forTests="false" />
94-
<orderEntry type="library" exported="" name="materialiconlib-1.0.2" level="project" />
96+
<orderEntry type="library" exported="" name="support-annotations-22.2.0" level="project" />
97+
<orderEntry type="library" exported="" name="support-v4-22.2.0" level="project" />
98+
<orderEntry type="library" exported="" name="materialiconlib-1.0.3" level="project" />
99+
<orderEntry type="library" exported="" name="appcompat-v7-22.2.0" level="project" />
95100
</component>
96101
</module>

app/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88

99
defaultConfig {
1010
applicationId "net.steamcrafted.materialiconview"
11-
minSdkVersion 4
11+
minSdkVersion 7
1212
targetSdkVersion 22
1313
versionCode 1
1414
versionName "1.0"
@@ -23,5 +23,6 @@ android {
2323

2424
dependencies {
2525
compile fileTree(dir: 'libs', include: ['*.jar'])
26-
compile 'net.steamcrafted:materialiconlib:1.0.2'
26+
compile 'com.android.support:appcompat-v7:22.2.0'
27+
compile 'net.steamcrafted:materialiconlib:1.0.3'
2728
}

materialiconlib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'com.android.library'
44
ext {
55
PUBLISH_GROUP_ID = 'net.steamcrafted'
66
PUBLISH_ARTIFACT_ID = 'materialiconlib'
7-
PUBLISH_VERSION = '1.0.2'
7+
PUBLISH_VERSION = '1.0.3'
88
}
99

1010
android {

materialiconlib/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="net.steamcrafted.materialiconlib">
33

4-
<application android:allowBackup="true" android:label="@string/app_name">
4+
<application android:allowBackup="true" >
55

66
</application>
77

materialiconlib/src/main/res/values/strings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)