Skip to content

Commit

Permalink
Fix up the Android files
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Aug 5, 2023
1 parent fd09df5 commit 8afaf12
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion kmake/Data/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ android {

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

sourceSets.getByName("main") {
java.setSrcDirs(listOf("../../../Kinc/Backends/System/Android/Java-Sources"))
}
buildTypes {
release {
isMinifyEnabled = false
Expand Down
8 changes: 4 additions & 4 deletions kmake/Data/android/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
{permissions}
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyApplication"
tools:targetApi="{targetSdkVersion}">
<activity
android:name="tech.kinc.KincActivity" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
android:exported="true">
android:exported="true" android:screenOrientation="sensor"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<meta-data android:name="android.app.lib_name" android:value="kinc" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down

0 comments on commit 8afaf12

Please sign in to comment.