Skip to content

Commit

Permalink
Merge pull request #409 from situmtech/feature/android-library-namesp…
Browse files Browse the repository at this point in the history
…aces

Feature/android library namespaces
  • Loading branch information
R-lagoman authored Nov 26, 2024
2 parents 16cdb92 + 247ac5f commit 46fcc88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.situm.plugin'
}

compileSdkVersion rootProject.ext.compileSdkVersion

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<manifest package="com.situm.plugin" xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
Expand Down

0 comments on commit 46fcc88

Please sign in to comment.