moljac

Results 451 comments of moljac

### Details - managed generated classes: `Xamarin.GooglePlayServices.Measurement.Impl` (`play-services-measurement-impl`) ``` using System; using System.Collections.Generic; using Android.Runtime; using Java.Interop; namespace Android.Gms.Measurement { // Metadata.xml XPath class reference: path="/api/package[@name='com.google.android.gms.measurement']/class[@name='AppMeasurement']" [ObsoleteAttribute (@"This class is...

### Details - decompiled *.class files: `Xamarin.GooglePlayServices.Measurement.Impl` (`play-services-measurement-impl`) ``` package com.google.android.gms.measurement; import com.google.android.gms.common.annotation.*; import android.content.*; import android.os.*; import com.google.android.gms.common.util.*; import com.google.android.gms.common.internal.*; import androidx.collection.*; import androidx.annotation.*; import java.util.*; import com.google.android.gms.measurement.internal.*; @Deprecated...

Projects dependencies For `Xamarin.GooglePlayServices.Measurement.Impl` (`play-services-measurement-impl`) ``` find ./generated/ -type f -name *.csproj -exec grep -Hni "play-services-measurement-impl.csproj" {} \; ``` Depending projects (thus nuget packages): ``` com.google.android.gms.play-services-tagmanager-api.csproj com.google.android.gms.play-services-measurement.csproj com.google.android.gms.play-services-measurement-api.csproj com.google.android.gms.play-services-measurement-sdk.csproj ```...

@jagnarock Would it be possible to provide minimal repro sample? This would help me speed investigation up.

@jagnarock Decompiled `classes.jar` from `firebase-functions` aar artifact: ``` public static FirebaseFunctions getInstance(final FirebaseApp app) { return a(app, "us-central1"); } public static FirebaseFunctions getInstance() { return a(FirebaseApp.getInstance(), "us-central1"); } ``` There...

@jagnarock OK. i will decompile the aar (jar) and see.

Notes: ``` find ./generated -name "*.MlKitInitProvider.cs" ``` ``` ./generated/com.google.mlkit.common/obj/Release/monoandroid90/generated/src/Xamarin.Google.MLKit.Common.Internal.MlKitInitProvider.cs ``` `com.google.android.gms.play-services-mlkit-text-recognition.csproj` Project references: ``` ``` ``` find ./generated -name "*.Zzk.cs" ``` None. ``` find ./generated -type f -name "api.xml" -exec...

@maxvodoo Thanks for reporting and the repro sample! Appreciated!

Thanks for the feedback. Will check the repro sample ASAP.

There are 2 problems here: 1. google stable artifacts depedning on preview package[s] you will have to ask google why do they do stuff like that... see: https://github.com/xamarin/GooglePlayServicesComponents/pull/473#issuecomment-856701358 We had...