Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changes: xamarin/java.interop@4e893bf...78d5937

  * xamarin/java.interop@78d59371: [Hello-NativeAOTFromAndroid] Add NativeAOT+Android sample (xamarin/java.interop#1218)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed May 9, 2024
1 parent ce5bbd0 commit 6e5239b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/Java.Interop
Submodule Java.Interop updated 45 files
+66 −0 build-tools/Java.Interop.BootstrapTasks/Java.Interop.BootstrapTasks/ParseAndroidResources.cs
+2 −0 samples/Hello-NativeAOTFromAndroid/.gitignore
+49 −0 samples/Hello-NativeAOTFromAndroid/Hello-NativeAOTFromAndroid.csproj
+221 −0 samples/Hello-NativeAOTFromAndroid/Hello-NativeAOTFromAndroid.targets
+51 −0 samples/Hello-NativeAOTFromAndroid/JavaInteropRuntime.cs
+73 −0 samples/Hello-NativeAOTFromAndroid/LogcatTextWriter.cs
+39 −0 samples/Hello-NativeAOTFromAndroid/MainActivity.cs
+61 −0 samples/Hello-NativeAOTFromAndroid/NativeAotTypeManager.cs
+224 −0 samples/Hello-NativeAOTFromAndroid/README.md
+2 −0 samples/Hello-NativeAOTFromAndroid/Transforms/Metadata.xml
+0 −0 samples/Hello-NativeAOTFromAndroid/Transforms/enumflags
+0 −0 samples/Hello-NativeAOTFromAndroid/Transforms/map.csv
+0 −0 samples/Hello-NativeAOTFromAndroid/Transforms/methodmap.csv
+56 −0 samples/Hello-NativeAOTFromAndroid/android.xml
+5 −0 samples/Hello-NativeAOTFromAndroid/app/.gitignore
+49 −0 samples/Hello-NativeAOTFromAndroid/app/build.gradle
+21 −0 samples/Hello-NativeAOTFromAndroid/app/proguard-rules.pro
+35 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/AndroidManifest.xml
+15 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/java/net/dot/jni/nativeaot/JavaInteropRuntime.java
+18 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/java/net/dot/jni/nativeaot/JavaMainActivity.java
+51 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/java/net/dot/jni/nativeaot/NativeAotRuntimeProvider.java
+ samples/Hello-NativeAOTFromAndroid/app/src/main/libs/arm64-v8a/libdotnet.so.dbg
+30 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
+170 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/res/drawable/ic_launcher_background.xml
+17 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/res/layout/activity_main.xml
+6 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+6 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
+ samples/Hello-NativeAOTFromAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
+3 −0 samples/Hello-NativeAOTFromAndroid/app/src/main/res/values/strings.xml
+5 −0 samples/Hello-NativeAOTFromAndroid/build.gradle
+21 −0 samples/Hello-NativeAOTFromAndroid/gradle.properties
+17 −0 samples/Hello-NativeAOTFromAndroid/settings.gradle
+1 −1 src/Java.Interop.Tools.JavaCallableWrappers/Java.Interop.Tools.JavaCallableWrappers.Adapters/CecilImporter.cs
+21 −1 src/Java.Interop.Tools.JavaCallableWrappers/Java.Interop.Tools.JavaCallableWrappers/CecilExtensions.cs
+5 −1 src/Java.Interop.Tools.JavaTypeSystem/Adapters/ManagedApiImporter.cs
+5 −1 tools/generator/Java.Interop.Tools.Generator.Importers/CecilApiImporter.cs

0 comments on commit 6e5239b

Please sign in to comment.