Skip to content

Commit c728e4c

Browse files
committed
refactor: updated AGP to 7.4.2 :refactor:
1 parent a2c3a60 commit c728e4c

9 files changed

Lines changed: 12 additions & 10 deletions

File tree

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ plugins {
1111
}
1212

1313
android {
14+
namespace = "com.androidvip.sysctlgui"
1415
compileSdk = 32
1516
compileOptions {
1617
sourceCompatibility = JavaVersion.VERSION_1_8

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools"
4-
package="com.androidvip.sysctlgui">
3+
xmlns:tools="http://schemas.android.com/tools">
54

65
<uses-permission android:name="android.permission.VIBRATE" />
76
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
val kotlinVersion = "1.6.10"
4+
val kotlinVersion = "1.6.21"
55

66
repositories {
77
google()
88
mavenCentral()
99
}
1010

1111
dependencies {
12-
classpath("com.android.tools.build:gradle:7.2.1")
12+
classpath("com.android.tools.build:gradle:7.4.2")
1313
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
1414
// NOTE: Do not place your application dependencies here; they belong
1515
// in the individual module build.gradle files

common/design/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ plugins {
44
}
55

66
android {
7+
namespace = "com.androidvip.sysctlgui.design"
78
compileSdk = 32
89

910
defaultConfig {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="com.androidvip.sysctlgui.design" />
2+
<manifest />

data/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
}
88

99
android {
10+
namespace = "com.androidvip.sysctlgui.data"
1011
compileSdk = 32
1112
compileOptions {
1213
sourceCompatibility = JavaVersion.VERSION_1_8

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ org.gradle.jvmargs=-Xmx1536m
1515
# Android operating system, and which are packaged with your app's APK
1616
# https://developer.android.com/topic/libraries/support-library/androidx-rn
1717
android.useAndroidX=true
18-
# Automatically convert third-party libraries to use AndroidX
19-
android.enableJetifier=true
2018
# Allow databinding to be incremental:
2119
android.databinding.incremental=true
2220
# Kotlin code style for this project: "official" or "obsolete":
@@ -26,3 +24,5 @@ kapt.incremental.apt=true
2624
kapt.use.worker.api=true
2725
kapt.include.compile.classpath=false
2826

27+
# Configuration cache
28+
org.gradle.configuration-cache=true

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

local.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# Location of the SDK. This is only used by Gradle.
55
# For customization when using a Version Control System, please read the
66
# header note.
7-
#Mon Apr 10 13:24:18 BRT 2023
8-
sdk.dir=C\:\\Users\\lenno\\AppData\\Local\\Android\\Sdk
7+
#Mon Apr 10 14:35:31 BRT 2023
8+
sdk.dir=/Users/lennoard/Library/Android/sdk

0 commit comments

Comments
 (0)