Skip to content

Commit 00a3db0

Browse files
committed
Updated libraries
1 parent c01a17a commit 00a3db0

7 files changed

Lines changed: 19 additions & 18 deletions

File tree

app/build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@ android {
1717
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1818
}
1919
}
20+
namespace 'com.devs.vectorchildfinderdemo'
2021
}
2122

2223
dependencies {
2324
implementation fileTree(dir: 'libs', include: ['*.jar'])
24-
implementation 'androidx.appcompat:appcompat:1.0.0'
25-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
26-
testImplementation 'junit:junit:4.12'
27-
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
28-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
25+
implementation 'androidx.appcompat:appcompat:1.6.1'
26+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
27+
testImplementation 'junit:junit:4.13.2'
28+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
29+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2930

3031
implementation project(':vectorchildfinder')
3132
//compile 'com.github.devsideal:VectorChildFinder:1.0.0'

app/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="com.devs.vectorchildfinderdemo">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:allowBackup="true"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.4.2'
10+
classpath 'com.android.tools.build:gradle:8.0.2'
1111
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
1212

1313
// NOTE: Do not place your application dependencies here; they belong

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
android.enableJetifier=true
1313
android.useAndroidX=true
1414
org.gradle.jvmargs=-Xmx1536m
15-
android.disableAutomaticComponentCreation=true
15+
# android.disableAutomaticComponentCreation=true
16+
android.defaults.buildfeatures.buildconfig=true
17+
android.nonTransitiveRClass=false
18+
android.nonFinalResIds=false
1619

1720
# When configured, Gradle will run in incubating parallel mode.
1821
# This option should only be used with decoupled projects. More details, visit
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Jun 13 14:28:07 BST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

vectorchildfinder/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ apply plugin: 'maven-publish'
33
group = 'com.github.devsideal'
44

55
android {
6-
compileSdkVersion 33
6+
compileSdk 33
77

88

99

1010
defaultConfig {
1111
minSdkVersion 16
1212
targetSdkVersion 33
13-
versionCode 1
14-
versionName "1.0"
1513

1614
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1715
vectorDrawables.useSupportLibrary = true
@@ -23,6 +21,7 @@ android {
2321
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2422
}
2523
}
24+
namespace 'com.devs.vectorchildfinder'
2625

2726
}
2827

@@ -31,7 +30,7 @@ dependencies {
3130

3231
// implementation 'com.android.support:appcompat-v7:26.1.0'
3332
implementation 'androidx.appcompat:appcompat:1.6.1'
34-
testImplementation 'junit:junit:4.12'
35-
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
36-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
33+
testImplementation 'junit:junit:4.13.2'
34+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
35+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
3736
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.devs.vectorchildfinder" />
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />

0 commit comments

Comments
 (0)