Skip to content

Commit 17351d4

Browse files
committed
Update to 1.1.5
1 parent d333929 commit 17351d4

18 files changed

Lines changed: 63 additions & 86 deletions

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:7.1.3'
7+
classpath 'com.android.tools.build:gradle:7.2.0'
88
}
99
}
1010

demo/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
applicationId "org.l3ger0j.androidrsidemenudemo"
1010
minSdk 21
1111
targetSdk 31
12-
versionCode 4
12+
versionCode 42
1313
versionName "1.1.5"
1414

1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -25,12 +25,13 @@ android {
2525
sourceCompatibility JavaVersion.VERSION_1_8
2626
targetCompatibility JavaVersion.VERSION_1_8
2727
}
28+
namespace 'org.l3ger0j.demo'
2829
}
2930

3031
dependencies {
3132

3233
implementation 'androidx.appcompat:appcompat:1.4.1'
33-
implementation 'com.google.android.material:material:1.5.0'
34+
implementation 'com.google.android.material:material:1.6.0'
3435
implementation project(path: ':library')
3536
testImplementation 'junit:junit:4.13.2'
3637
testImplementation 'org.testng:testng:7.5'

demo/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="org.l3ger0j.demo">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:allowBackup="true"
-2.89 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<vector android:height="24dp" android:tint="#FFFFFF"
2+
android:viewportHeight="24" android:viewportWidth="24"
3+
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
4+
<path android:fillColor="@android:color/white" android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
5+
</vector>
-2.89 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<vector android:height="24dp" android:tint="#BDBCBD"
2+
android:viewportHeight="24" android:viewportWidth="24"
3+
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
4+
<path android:fillColor="@android:color/white" android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
5+
</vector>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
33
distributionPath=wrapper/dists
44
zipStorePath=wrapper/dists
55
zipStoreBase=GRADLE_USER_HOME

library/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ android {
1010
defaultConfig {
1111
minSdk 21
1212
targetSdk 31
13-
versionCode 41
14-
versionName "1.1.4"
1513

1614
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1715
consumerProguardFiles "consumer-rules.pro"
@@ -31,12 +29,13 @@ android {
3129
buildFeatures() {
3230
viewBinding viewBind
3331
}
32+
namespace 'org.l3ger0j.library'
3433
}
3534

3635
dependencies {
3736

3837
implementation 'androidx.appcompat:appcompat:1.4.1'
39-
implementation 'com.google.android.material:material:1.5.0'
38+
implementation 'com.google.android.material:material:1.6.0'
4039
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
4140
testImplementation 'junit:junit:4.13.2'
4241
testImplementation 'org.testng:testng:7.5'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="org.l3ger0j.library">
2+
<manifest>
33

44
</manifest>

0 commit comments

Comments
 (0)