How to include Android binding dependencies and avoid ClassNotFoundExceptions
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Aptitud para principiantes
- 48/100
- Tipo de issue
- Documentación
- Claridad
- Bastante claro
- Estado de actividad
- Tranquilo
- Stack tecnológico
- android, csharp
- Área
- documentation, mobile
Línea de trabajo
Comienza con los archivos build.gradle.kts y Sample.csproj del ejemplo de Facebook y, a continuación, lee la documentación vinculada sobre Java Dependency Verification y Resolving Java Dependencies. Compila el ejemplo para observar la salida de dependencias XA4241 y XA4242. Se considera terminado cuando se haya documentado cómo declarar artefactos Maven, evaluar las dependencias notificadas y validar el despliegue sin ClassNotFoundExceptions.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
Handling transitive dependencies is common challenge with .NET for Android and Android Native Library Interop binding projects when attempting to bind a Maven artifact. This story is further complicated by the fact that .NET for Android binds and redistributes AndroidX and other support libraries via NuGet packages, and MAUI projects depend on a handful of these libraries.
Starting in .NET 9 there are a few build items that can be used to help validate your Java dependency tree which are outlined in the Java Dependency Verification and Resolving Java Dependencies docs.
We can look at the Facebook sample in this repo for an example on how to use these items with Native Library Interop. Here's a quick overview of how the various pieces fit together.
- In your
build.gradle.ktsfile, declare the Maven artifact(s) you are interested in binding: https://github.com/CommunityToolkit/Maui.NativeLibraryInterop/blob/e91dadd35f0c4ceb333034c3fd7b3c6ceebf4c94/facebook/android/native/mauifacebook/build.gradle.kts#L31 - In your application project, add the same Maven artifact(s) as an
@(AndroidMavenLibrary)item. Set the%(Bind)metadata to false; we do not want to bind this artifact again. We are only including this reference to opt-in to the Java dependency verification system mentioned above to figure out which artifact dependencies we will need to bring into the app:
<AndroidMavenLibrary Include="com.facebook.android:facebook-android-sdk" Version="17.0.2" Bind="false" />
- Build your application project, and you should see a list of unfulfilled dependencies:
error XA4241: Java dependency 'com.facebook.android:facebook-core:17.0.2' is not satisfied.
error XA4241: Java dependency 'com.facebook.android:facebook-common:17.0.2' is not satisfied.
error XA4241: Java dependency 'com.facebook.android:facebook-login:17.0.2' is not satisfied.
error XA4241: Java dependency 'com.facebook.android:facebook-share:17.0.2' is not satisfied.
error XA4241: Java dependency 'com.facebook.android:facebook-applinks:17.0.2' is not satisfied.
error XA4241: Java dependency 'com.facebook.android:facebook-messenger:17.0.2' is not satisfied.
error XA4241: Java dependency 'com.facebook.android:facebook-gamingservices:17.0.2' is not satisfied.
error XA4242: Java dependency 'org.jetbrains.kotlin:kotlin-stdlib:1.5.10' is not satisfied. Microsoft maintains the NuGet package 'Xamarin.Kotlin.StdLib' that could fulfill this dependency.
- It's recommended that you include all of the dependencies listed in this output in your application project. However, given the scope of what you are trying to bind, you can try to reason about which of these dependencies you could safely exclude. In the case of the Facebookj sample, I replaced the
facebook-android-sdkdependency with the first dependency listed above (facebook-core) and rebuilt:
https://github.com/CommunityToolkit/Maui.NativeLibraryInterop/blob/e91dadd35f0c4ceb333034c3fd7b3c6ceebf4c94/facebook/sample/Sample.csproj#L65
error XA4241: Java dependency 'com.facebook.android:facebook-bolts:17.0.2' is not satisfied.
error XA4242: Java dependency 'androidx.annotation:annotation:1.1.0' is not satisfied. Microsoft maintains the NuGet package 'Xamarin.AndroidX.Annotation' that could fulfill this dependency.
error XA4242: Java dependency 'androidx.legacy:legacy-support-core-utils:1.0.0' is not satisfied. Microsoft maintains the NuGet package 'Xamarin.AndroidX.Legacy.Support.Core.Utils' that could fulfill this dependency.
error XA4242: Java dependency 'com.android.installreferrer:installreferrer:1.0' is not satisfied. Microsoft maintains the NuGet package 'Xamarin.Google.Android.InstallReferrer' that could fulfill this dependency.
error XA4242: Java dependency 'androidx.core:core-ktx:1.3.2' is not satisfied. Microsoft maintains the NuGet package 'Xamarin.AndroidX.Core.Core.Ktx' that could fulfill this dependency.
error XA4242: Java dependency 'org.jetbrains.kotlin:kotlin-stdlib:1.5.10' is not satisfied. Microsoft maintains the NuGet package 'Xamarin.Kotlin.StdLib' that could fulfill this dependency.
- After adding the full set of dependencies you should be able to deploy and run the application on an emulator or device. If you are attempting to only include a subset you may encounter a crash at runtime and likely need to return to the list from step 3 and start adding back any dependencies that were excluded.
The live Facebook sample code demonstrates the end result of this iterative process, and contains a trimmed down list of dependencies that were initially presented. These were the only dependencies required to light up the small code path I was trying to bind. This solution is not perfect and can still lead to unexpected behavior due to the complexity and size of some Maven artifacts.
We should continue to build out better documentation around these challenges and potential solutions. We're also hoping to continue to make improvements to this area of the .NET for Android binding experience in the future.
Please feel free to also use this issue to provide feedback on how this process interacts with Native Library Interop.
- Lenguaje dominante
- C#
- Estrellas
- 249
- Forks
- 48
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Preparar el entorno
Aún no hemos revisado los archivos de configuración de este proyecto. Empieza por su README y consulta nuestra guía para la primera contribución para los pasos generales.
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de CommunityToolkit/Maui.NativeLibraryInterop
-
Dificultad 4/5 3-5 días Aptitud para principiantes 35/100
CommunityToolkit/Maui.NativeLibraryInterop#107 · 8 comentarios · 1 reacción ·
-
Android dependenciesAbierto
Dificultad 5/5 Más de una semana Aptitud para principiantes 25/100
CommunityToolkit/Maui.NativeLibraryInterop#106 · 1 reacción ·
-
Dificultad 4/5 3-5 días Aptitud para principiantes 35/100
CommunityToolkit/Maui.NativeLibraryInterop#105 · 2 comentarios ·
-
Dificultad 4/5 3-5 días Aptitud para principiantes 35/100
-
Dificultad 3/5 3-5 días Aptitud para principiantes 30/100
CommunityToolkit/Maui.NativeLibraryInterop#101 · 3 comentarios · 4 reacciones ·
Todos los issues de CommunityToolkit/Maui.NativeLibraryInterop
Issues similares
-
bug
Dificultad 2/5 1-3 horas Aptitud para principiantes 72/100
fluentassertions/fluentassertions#3353 ·
Los mantenedores suelen responder en 1 día
-
bug
Dificultad 2/5 1-3 horas Aptitud para principiantes 65/100
-
Dificultad 2/5 Medio día Aptitud para principiantes 78/100
unoplatform/uno#24769 ·
Los mantenedores suelen responder en 1 día
-
bug
Dificultad 2/5 1-3 horas Aptitud para principiantes 75/100
AvaloniaUI/Avalonia#22323 ·
Los mantenedores suelen responder en 1 día
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 88/100
microsoft/onnxruntime-genai#2633 ·
Los mantenedores suelen responder en 1 día