mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2025-12-19 15:34:26 +01:00
Increase Gradle version to 7.1.3
This commit is contained in:
@@ -8,6 +8,8 @@ plugins {
|
||||
apply from: rootProject.file("gradle/git-tag-version.gradle")
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.nrftoolbox'
|
||||
|
||||
compileSdk android_api_version
|
||||
|
||||
defaultConfig {
|
||||
@@ -76,7 +78,6 @@ dependencies {
|
||||
implementation project(':profile_rscs')
|
||||
|
||||
implementation project(':profile_uart')
|
||||
// implementation project(':profile_dfu')
|
||||
|
||||
implementation project(":lib_theme")
|
||||
implementation project(":lib_utils")
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.nrftoolbox">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<queries>
|
||||
<package android:name="no.nordicsemi.android.dfu" />
|
||||
|
||||
@@ -11,7 +11,7 @@ buildscript {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.1.2'
|
||||
classpath 'com.android.tools.build:gradle:7.1.3'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"
|
||||
classpath "com.google.dagger:hilt-android-gradle-plugin:2.40.4"
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.logger'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation libs.nordic.log
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.logger">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="no.nordicsemi.android.LOG"/>
|
||||
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.service'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_theme")
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.service">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.theme'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_log")
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="no.nordicsemi.android.theme">
|
||||
<manifest>
|
||||
|
||||
</manifest>
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.utils'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation libs.nordic.navigation
|
||||
implementation libs.nordic.ui.scanner
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="no.nordicsemi.android.utils">
|
||||
<manifest>
|
||||
|
||||
</manifest>
|
||||
@@ -24,3 +24,7 @@ dependencies {
|
||||
|
||||
testImplementation libs.bundles.test
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.bps'
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="no.nordicsemi.android.bps">
|
||||
<manifest>
|
||||
|
||||
</manifest>
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.cgms'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_service")
|
||||
implementation project(":lib_theme")
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.cgms">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
<service android:name=".repository.CGMService" />
|
||||
|
||||
@@ -24,3 +24,7 @@ dependencies {
|
||||
|
||||
testImplementation libs.bundles.test
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.csc'
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.csc">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.gls'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_service")
|
||||
implementation project(":lib_theme")
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="no.nordicsemi.android.gls">
|
||||
<manifest>
|
||||
|
||||
</manifest>
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.hrs'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_service")
|
||||
implementation project(":lib_theme")
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.hrs">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
<service android:name=".service.HRSService" />
|
||||
|
||||
@@ -24,3 +24,7 @@ dependencies {
|
||||
|
||||
testImplementation libs.bundles.test
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.hts'
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.hts">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
<service android:name=".repository.HTSService" />
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.prx'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_service")
|
||||
implementation project(":lib_theme")
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.prx">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
<service android:name=".repository.PRXService"/>
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
apply from: rootProject.file("library.gradle")
|
||||
apply plugin: 'kotlin-parcelize'
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.rscs'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib_service")
|
||||
implementation project(":lib_theme")
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.rscs">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
<service android:name=".repository.RSCSService"/>
|
||||
|
||||
@@ -55,3 +55,7 @@ dependencies {
|
||||
exclude group: 'xpp3', module: 'xpp3'
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'no.nordicsemi.android.uart'
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="no.nordicsemi.android.uart">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
<service android:name=".repository.UARTService" />
|
||||
|
||||
Reference in New Issue
Block a user