Skip to content

Commit

Permalink
Merge pull request #59 from K-Konstantinidis/mobileApp
Browse files Browse the repository at this point in the history
Final pull request of Mobile App
  • Loading branch information
Kodoban authored Jun 21, 2022
2 parents 150ae67 + 1a1d403 commit 3fc04f0
Show file tree
Hide file tree
Showing 33 changed files with 1,233 additions and 673 deletions.
1 change: 1 addition & 0 deletions Mob-App/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Mob-App/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions Mob-App/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Mob-App/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
implementation 'androidx.navigation:navigation-fragment:2.4.2'
implementation 'androidx.navigation:navigation-ui:2.4.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'androidx.annotation:annotation:1.4.0'
implementation "androidx.recyclerview:recyclerview:1.2.1"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
Expand Down
45 changes: 20 additions & 25 deletions Mob-App/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.example.esake">

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Esake"
android:usesCleartextTraffic="true"
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Esake"
android:usesCleartextTraffic="true"
tools:targetApi="n">
<!-- Run index page (Official Main) -->
<!-- Run index page (Official Main) -->
<activity
android:name=".IndexPage"
android:exported="true">
Expand All @@ -25,29 +25,24 @@

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Run login page -->
<activity
android:name=".Login"
android:exported="false" />
<!-- Run home pages -->
</activity> <!-- Run login page -->
<activity
android:name=".Login"
android:exported="false" /> <!-- Run home pages -->
<activity
android:name=".StatsManagerHome.HomeActivity"
android:exported="false" />
<activity
android:name=".MainActivity"
android:exported="false" >
</activity>
<!-- Run tabbed pages -->
android:exported="false"></activity> <!-- Run tabbed pages -->
<activity
android:name=".Tabbed_User"
android:exported="false"
android:theme="@style/Theme.Esake.NoActionBar">
</activity>
android:theme="@style/Theme.Esake.NoActionBar"></activity>
<activity
android:name=".Tabbed_Stats_Manager"
android:exported="false"
android:theme="@style/Theme.Esake.NoActionBar" >
</activity>
</application>
android:theme="@style/Theme.Esake.NoActionBar"></activity>
</application>

</manifest>
Loading

0 comments on commit 3fc04f0

Please sign in to comment.