Skip to content

Commit

Permalink
Android
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Nov 14, 2024
1 parent 8859c30 commit 4775579
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 18 deletions.
6 changes: 3 additions & 3 deletions android/motionUI/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ android {
keyAlias keystoreProperties['keyAlias']
}
}
namespace 'com.example.motionui'
namespace 'app.motionui.android'
compileSdk 34

defaultConfig {
applicationId "com.example.motionui"
minSdk 24
applicationId "app.motionui.android"
minSdk 30
targetSdk 34
versionCode 1
versionName "1.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.motionui;
package app.motionui.android;

import android.content.Context;

Expand Down
6 changes: 3 additions & 3 deletions android/motionUI/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
android:usesCleartextTraffic="true"
tools:targetApi="31">
<activity
android:name=".Startup"
android:name="app.motionui.android.Startup"
android:exported="false" />
<activity
android:name=".SplashScreen"
android:name="app.motionui.android.SplashScreen"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -35,7 +35,7 @@
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:name="app.motionui.android.MainActivity"
android:exported="true"></activity>
</application>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.motionui;
package app.motionui.android;

import androidx.appcompat.app.AppCompatActivity;
import android.widget.Toast;
Expand All @@ -23,7 +23,6 @@
import androidx.core.content.ContextCompat;
import androidx.annotation.NonNull;


/**
* MainActivity
* This is the main activity of the app (motionUI main page)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.example.motionui;
package app.motionui.android;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
package com.example.motionui;
package app.motionui.android;

import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.util.Log;

/**
* Startup activity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.motionui;
package app.motionui.android;
import android.content.Context;

import androidx.security.crypto.EncryptedSharedPreferences;
Expand Down
2 changes: 1 addition & 1 deletion android/motionUI/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
tools:context="app.motionui.android.MainActivity">

<WebView
android:id="@+id/motionUIWebView"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SplashScreen"
tools:context="app.motionui.android.SplashScreen"
android:background="@color/motionUIBlue">

<LinearLayout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/motionUIBlue"
tools:context=".Startup">
tools:context="app.motionui.android.Startup">

<LinearLayout
android:layout_width="348dp"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.motionui;
package app.motionui.android;

import org.junit.Test;

Expand Down

0 comments on commit 4775579

Please sign in to comment.