Skip to content

Commit fc3c12a

Browse files
committed
Upgrade Android Gradle Plugin
1 parent 5e8d98f commit fc3c12a

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ android {
3232
buildFeatures {
3333
viewBinding true
3434
}
35+
namespace 'com.telemetrydeck.sdk.app'
3536
}
3637

3738
dependencies {

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.telemetrydeck.sdk.app">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43
<uses-permission android:name="android.permission.INTERNET" />
54

65
<application

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ buildscript {
66
maven { url 'https://jitpack.io' }
77
}
88
dependencies {
9-
classpath "com.android.tools.build:gradle:7.0.4"
10-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
9+
classpath 'com.android.tools.build:gradle:7.4.2'
10+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
1111

1212
// NOTE: Do not place your application dependencies here; they belong
1313
// in the individual module build.gradle files
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

lib/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ android {
1111
defaultConfig {
1212
minSdk 21
1313
targetSdk 31
14-
versionCode 1
15-
versionName "1.0"
1614

1715
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1816
consumerProguardFiles "consumer-rules.pro"
@@ -36,6 +34,7 @@ android {
3634
packagingOptions {
3735
resources.excludes += "DebugProbesKt.bin"
3836
}
37+
namespace 'com.telemetrydeck.sdk'
3938
}
4039

4140
def ktor_version = '1.6.7'

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

54
<uses-permission android:name="android.permission.INTERNET"/>
65
<application>

0 commit comments

Comments
 (0)