Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ble-common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apply plugin: 'com.android.library'

android {
namespace 'no.nordicsemi.android.ble.common'

compileSdkVersion 30

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion ble-common/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="no.nordicsemi.android.ble.common"/>
<manifest />
2 changes: 2 additions & 0 deletions ble-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
}

android {
namespace 'no.nordicsemi.android.ble.ktx'

compileSdkVersion 30

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion ble-ktx/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="no.nordicsemi.android.ble.ktx" />
<manifest />
2 changes: 2 additions & 0 deletions ble-livedata/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
}

android {
namespace 'no.nordicsemi.android.ble.livedata'

compileSdkVersion 30

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion ble-livedata/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="no.nordicsemi.android.ble.livedata" />
<manifest />
2 changes: 2 additions & 0 deletions ble/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apply plugin: 'com.android.library'

android {
namespace 'no.nordicsemi.android.ble'

compileSdkVersion 30

defaultConfig {
Expand Down
3 changes: 1 addition & 2 deletions ble/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -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.ble">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
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.github.gradle-nexus:publish-plugin:$gradle_nexus_publish_plugin"
}
Expand Down