f-miyu / Plugin.CloudFirestore

MIT License
121 stars 44 forks source link

How make changes in AndroidManifest.xml ? #31

Closed Sebastien-Remy closed 4 years ago

Sebastien-Remy commented 4 years ago

Hello, can you explain where to put

    <TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
    <AndroidEnableMultiDex>true</AndroidEnableMultiDex>

in AndroidManifest.xml for now my AndroidManifest.xml looks like this:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
          android:versionCode="1" 
          android:versionName="1.0" 
          package="fr.ilandes.lunargarden">
    <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
    <application android:label="GardeningByTheMoon.Android">
     </application>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
f-miyu commented 4 years ago

It is not put to AndroidManifest.xml but .csproj file.

https://github.com/f-miyu/Plugin.CloudFirestore/blob/ada7458492aad6d4d278cad196c94d6bd185a282/Plugin.CloudFirestore.Sample/Plugin.CloudFirestore.Sample.Android/Plugin.CloudFirestore.Sample.Android.csproj#L29

You can also set by [Enable Multi-Dex] in Android Build of Project Options.

Sebastien-Remy commented 4 years ago

Thank you, I will continue my tests