Skip to content

Commit

Permalink
Merge pull request #373 from ytai/moveNamespace
Browse files Browse the repository at this point in the history
Move namespace
  • Loading branch information
hannesa2 authored May 10, 2024
2 parents 9b05cfd + d8b4b30 commit 053757f
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 16 deletions.
3 changes: 1 addition & 2 deletions applications/HelloIOIOService/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="ioio.examples.hello_service">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

Expand Down
1 change: 1 addition & 0 deletions applications/HolidayIOIO/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
namespace "ioio.examples.holiday"
defaultConfig {

minSdkVersion 21
Expand Down
3 changes: 1 addition & 2 deletions applications/HolidayIOIO/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="ioio.examples.holiday">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down
1 change: 1 addition & 0 deletions applications/IOIOConnectionTesterAndroid/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apply plugin: 'com.android.application'

android {
namespace "ioio.connection_tester"
defaultConfig {
minSdkVersion 14
compileSdk 33
Expand Down
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="ioio.connection_tester">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.BLUETOOTH" />
Expand Down
1 change: 1 addition & 0 deletions applications/IOIOManager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
namespace "ioio.manager"
defaultConfig {

minSdkVersion 21
Expand Down
3 changes: 1 addition & 2 deletions applications/IOIOManager/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="ioio.manager">
xmlns:tools="http://schemas.android.com/tools" >

<supports-screens android:anyDensity="true" />

Expand Down
1 change: 1 addition & 0 deletions applications/IOIOSimpleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
namespace "ioio.examples.simple"
defaultConfig {

minSdkVersion 21
Expand Down
3 changes: 1 addition & 2 deletions applications/IOIOSimpleApp/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="ioio.examples.simple">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

<application
android:theme="@style/Theme.AppCompat.NoActionBar"
Expand Down
1 change: 1 addition & 0 deletions applications/IOIOTestBed/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apply plugin: 'com.android.application'

android {
namespace "ioio.test_bed"
defaultConfig {
minSdkVersion 14
compileSdk 33
Expand Down
3 changes: 1 addition & 2 deletions applications/IOIOTestBed/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="ioio.test_bed">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

<application
android:theme="@style/Theme.AppCompat.NoActionBar"
Expand Down
1 change: 1 addition & 0 deletions applications/IOIOTortureTest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apply plugin: 'com.android.application'

android {
namespace "ioio.tests.torture"
defaultConfig {
minSdkVersion 14
compileSdk 33
Expand Down
3 changes: 1 addition & 2 deletions applications/IOIOTortureTest/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="ioio.tests.torture">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
Expand Down
1 change: 1 addition & 0 deletions applications/ShoeBot/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apply plugin: 'com.android.application'

android {
namespace "ioio.applications.shoebot"
defaultConfig {
minSdkVersion 14
compileSdk 33
Expand Down
3 changes: 1 addition & 2 deletions applications/ShoeBot/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="ioio.applications.shoebot">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
Expand Down

0 comments on commit 053757f

Please sign in to comment.