-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,924 changed files
with
321,027 additions
and
321,907 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
|
||
# Set default charset | ||
[*] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 4 | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,63 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdk 34 | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
defaultConfig { | ||
applicationId 'AE.Demo' | ||
minSdkVersion 24 // 24+ for vulkan | ||
targetSdkVersion 34 | ||
|
||
ndk { | ||
abiFilters "arm64-v8a", "armeabi-v7a" //, "x86", "x86_64" | ||
} | ||
externalNativeBuild { | ||
cmake { | ||
arguments '-DANDROID_STL=c++_static', // see https://developer.android.com/ndk/guides/cpp-support#static_runtimes | ||
'-DANDROID_ARM_NEON=ON', | ||
'-DAE_ENABLE_VULKAN=ON' | ||
} | ||
} | ||
} | ||
|
||
buildTypes { | ||
release { | ||
//debuggable true // to enable logcat in release | ||
minifyEnabled = false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
signingConfig signingConfigs.debug | ||
} | ||
} | ||
|
||
ndkVersion "24.0.8215888" | ||
|
||
externalNativeBuild { | ||
cmake { | ||
version '3.26.4' | ||
path '../../CMakeLists.txt' | ||
} | ||
} | ||
sourceSets { | ||
main { | ||
assets.srcDirs = ['../../../AE-Temp/samples/demo'] | ||
} | ||
} | ||
packagingOptions { | ||
jniLibs { | ||
excludes += ['lib/**/*.so'] | ||
pickFirsts += ['lib/**/libSampleDemo.so'] | ||
pickFirsts += ['lib/**/libc++_shared.so', 'lib/**/libVkLayer_khronos_validation.so'] | ||
} | ||
} | ||
namespace 'AE.demo' | ||
compileSdk 34 | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
defaultConfig { | ||
applicationId 'AE.Demo' | ||
minSdkVersion 24 // 24+ for vulkan | ||
targetSdkVersion 34 | ||
ndk { | ||
abiFilters "arm64-v8a", "armeabi-v7a" //, "x86", "x86_64" | ||
} | ||
externalNativeBuild { | ||
cmake { | ||
arguments '-DANDROID_STL=c++_static', // see https://developer.android.com/ndk/guides/cpp-support#static_runtimes | ||
'-DANDROID_ARM_NEON=ON', | ||
'-DAE_ENABLE_VULKAN=ON' | ||
} | ||
} | ||
} | ||
buildTypes { | ||
release { | ||
//debuggable true // to enable logcat in release | ||
minifyEnabled = false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
signingConfig signingConfigs.debug | ||
} | ||
} | ||
|
||
ndkVersion "24.0.8215888" | ||
|
||
externalNativeBuild { | ||
cmake { | ||
version '3.26.4' | ||
path '../../CMakeLists.txt' | ||
} | ||
} | ||
sourceSets { | ||
main { | ||
assets.srcDirs = ['../../../AE-Temp/samples/demo'] | ||
} | ||
} | ||
packagingOptions { | ||
jniLibs { | ||
excludes += ['lib/**/*.so'] | ||
pickFirsts += ['lib/**/libSampleDemo.so'] | ||
pickFirsts += ['lib/**/libc++_shared.so', 'lib/**/libVkLayer_khronos_validation.so'] | ||
} | ||
} | ||
namespace 'AE.demo' | ||
} | ||
|
||
dependencies { | ||
implementation project(path: ':engine') | ||
implementation 'androidx.appcompat:appcompat:1.6.1' | ||
implementation project(path: ':engine') | ||
implementation 'androidx.appcompat:appcompat:1.6.1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.