Unify namespaces
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
cmake_minimum_required(VERSION 3.22.1)
|
||||
|
||||
project("Kinc")
|
||||
project("Iron")
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}{debug_defines}")
|
||||
@@ -12,11 +12,11 @@ include_directories(
|
||||
{includes})
|
||||
|
||||
add_library(
|
||||
kinc
|
||||
iron
|
||||
SHARED
|
||||
{files})
|
||||
|
||||
{libraries1}
|
||||
target_link_libraries(
|
||||
kinc
|
||||
iron
|
||||
{libraries2})
|
||||
|
||||
@@ -20,13 +20,13 @@
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-keep public class tech.kinc.KincActivity {
|
||||
-keep public class org.armory3d.IronActivity {
|
||||
public <methods>;
|
||||
}
|
||||
-keep public class tech.kinc.KincMoviePlayer {
|
||||
-keep public class org.armory3d.IronMoviePlayer {
|
||||
public <methods>;
|
||||
}
|
||||
-keep public class tech.kinc.KincMovieTexture {
|
||||
-keep public class org.armory3d.IronMovieTexture {
|
||||
public <methods>;
|
||||
}
|
||||
-keepclasseswithmembernames,includedescriptorclasses class * {
|
||||
|
||||
@@ -10,11 +10,11 @@
|
||||
android:supportsRtl="true"
|
||||
tools:targetApi="{targetSdkVersion}">
|
||||
<activity
|
||||
android:name="tech.kinc.KincActivity" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|screenLayout|smallestScreenSize"
|
||||
android:name="org.armory3d.IronActivity" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|screenLayout|smallestScreenSize"
|
||||
android:exported="true" android:screenOrientation="{screenOrientation}"
|
||||
android:launchMode="singleTask"
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
|
||||
<meta-data android:name="android.app.lib_name" android:value="kinc" />
|
||||
<meta-data android:name="android.app.lib_name" android:value="iron" />
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user