Skip to content

Commit

Permalink
Upgrade agp (#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
valentunn authored Feb 18, 2025
1 parent 7fd38e4 commit 373f3f8
Show file tree
Hide file tree
Showing 68 changed files with 69 additions and 44 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ android {
resources.excludes.add("META-INF/versions/9/previous-compilation-data.bin")
resources.excludes.add("META-INF/DEPENDENCIES")
}
namespace 'io.novafoundation.nova.app'
}

void createBindReleaseFileTask(String destination) {
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="io.novafoundation.nova.app">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
Expand Down
1 change: 1 addition & 0 deletions bindings/hydra-dx-math/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.hydra_dx_math'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion bindings/hydra-dx-math/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="io.novafoundation.nova.hydra_dx_math" />
<manifest />
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.google.gms:google-services:4.3.14'
classpath 'org.mozilla.rust-android-gradle:plugin:0.9.3'
Expand Down
1 change: 1 addition & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.common'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="io.novafoundation.nova.common" />
<manifest />
1 change: 1 addition & 0 deletions core-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.core'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion core-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.core">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions core-db/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ android {
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}
namespace 'io.novafoundation.nova.core_db'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion core-db/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="io.novafoundation.nova.core_db" />
<manifest />
1 change: 1 addition & 0 deletions feature-account-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_account_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-account-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_account_api">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions feature-account-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_account_impl'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-account-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="io.novafoundation.nova.feature_account_impl" />
<manifest />
1 change: 1 addition & 0 deletions feature-assets/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_assets'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions feature-assets/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_assets">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
1 change: 1 addition & 0 deletions feature-crowdloan-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_crowdloan_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-crowdloan-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_crowdloan_api">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions feature-crowdloan-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ android {
sourceCompatibility 1.8
targetCompatibility 1.8
}
namespace 'io.novafoundation.nova.feature_crowdloan_impl'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-crowdloan-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_crowdloan_impl">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions feature-currency-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_currency_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-currency-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_currency_api"/>
<manifest />
1 change: 1 addition & 0 deletions feature-currency-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ android {
sourceCompatibility 1.8
targetCompatibility 1.8
}
namespace 'io.novafoundation.nova.feature_currency_impl'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-currency-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_currency_impl"/>
<manifest />
1 change: 1 addition & 0 deletions feature-dapp-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_dapp_api'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions feature-dapp-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_dapp_api">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
1 change: 1 addition & 0 deletions feature-dapp-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_dapp_impl'
}

task actualizeJsScripts(type: Exec) {
Expand Down
3 changes: 1 addition & 2 deletions feature-dapp-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_dapp_impl">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
1 change: 1 addition & 0 deletions feature-deep-linking/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_deep_linking'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-deep-linking/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_deep_linking" />
<manifest />
1 change: 1 addition & 0 deletions feature-ledger-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_ledger_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-ledger-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_ledger_api" />
<manifest />
1 change: 1 addition & 0 deletions feature-ledger-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ android {
sourceCompatibility 1.8
targetCompatibility 1.8
}
namespace 'io.novafoundation.nova.feature_ledger_impl'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-ledger-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_ledger_impl" />
<manifest />
1 change: 1 addition & 0 deletions feature-nft-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_nft_api'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions feature-nft-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_nft_api">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
1 change: 1 addition & 0 deletions feature-nft-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_nft_impl'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions feature-nft-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_nft_impl">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
1 change: 1 addition & 0 deletions feature-onboarding-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_onboarding_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-onboarding-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_onboarding_api">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions feature-onboarding-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_onboarding_impl'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-onboarding-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="io.novafoundation.nova.feature_onboarding_impl" />
<manifest />
1 change: 1 addition & 0 deletions feature-proxy-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_proxy_api'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions feature-proxy-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_proxy_api"/>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
1 change: 1 addition & 0 deletions feature-push-notifications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.feature_push_notifications'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions feature-push-notifications/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.novafoundation.nova.feature_push_notifications" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
1 change: 1 addition & 0 deletions feature-splash/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ android {
jvmTarget = '1.8'
freeCompilerArgs = ["-Xcontext-receivers"]
}
namespace 'io.novafoundation.nova.splash'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-splash/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<manifest package="io.novafoundation.nova.splash">
<manifest>
</manifest>
1 change: 1 addition & 0 deletions feature-staking-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ android {
sourceCompatibility 1.8
targetCompatibility 1.8
}
namespace 'io.novafoundation.nova.feature_staking_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-staking-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_staking_api">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions feature-staking-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
sourceCompatibility 1.8
targetCompatibility 1.8
}
namespace 'io.novafoundation.nova.feature_staking_impl'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-staking-impl/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_staking_impl">
<manifest>

</manifest>
1 change: 1 addition & 0 deletions feature-versions-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ android {
sourceCompatibility 1.8
targetCompatibility 1.8
}
namespace 'io.novafoundation.nova.feature_versions_api'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion feature-versions-api/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.novafoundation.nova.feature_versions_api"/>
<manifest />
Loading

0 comments on commit 373f3f8

Please sign in to comment.