dotnet / android

.NET for Android provides open-source bindings of the Android SDK for use with .NET managed languages such as C#
MIT License
1.93k stars 528 forks source link

about build.gradle #4798

Closed qcjxberin closed 4 years ago

qcjxberin commented 4 years ago

signingConfigs { debug { v2SigningEnabled false storeFile file("debug.jks") storePassword '123456' keyAlias 'ray_ni' keyPassword '123456' } release { v2SigningEnabled false storeFile file("debug.jks") storePassword '123456' keyAlias 'ray_ni' keyPassword '123456' } }

The build.gradle file must contain the above content, otherwise the third-party SDK cannot parse the data normally, what needs to be done to solve the problem.

jonathanpeppers commented 4 years ago

@qcjxberin I'm not sure what you are asking here? Can you give some more detail?

If you want to know the equivalent for these gradle settings in Xamarin.Android, is this what you're looking for?

https://docs.microsoft.com/xamarin/android/deploy-test/building-apps/build-process#signing-properties

qcjxberin commented 4 years ago

I already know how to get it here

qcjxberin commented 4 years ago

Tks