Changes
This commit is contained in:
parent
9d6aaccc0c
commit
94a4ba1e1e
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
.idea/
|
.idea/
|
||||||
obj/
|
obj/
|
||||||
bin/
|
bin/
|
||||||
|
/.DS_Store
|
||||||
|
BIN
DemoAndroid/.DS_Store
vendored
Normal file
BIN
DemoAndroid/.DS_Store
vendored
Normal file
Binary file not shown.
@ -13,10 +13,8 @@
|
|||||||
<RunAOTCompilation>False</RunAOTCompilation>
|
<RunAOTCompilation>False</RunAOTCompilation>
|
||||||
<PublishAot>False</PublishAot>
|
<PublishAot>False</PublishAot>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="QRCoder-ImageSharp" Version="0.10.0" />
|
<PackageReference Include="QRCoder-ImageSharp" Version="0.10.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Folder Include="Activities\" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
</Project>
|
15
DemoAndroid/README.md
Normal file
15
DemoAndroid/README.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Android Native C# readme
|
||||||
|
|
||||||
|
1. AOT makes release versions crash sometimes, so it is disabled
|
||||||
|
2. Project created with
|
||||||
|
```bash
|
||||||
|
dotnet new android
|
||||||
|
```
|
||||||
|
3. New activities can be created with
|
||||||
|
```bash
|
||||||
|
dotnet new android-activity -n MyNewActivity
|
||||||
|
```
|
||||||
|
4. Avoid NuGet packages that are not built for non-Windows environments (e.g. depend on System.Drawing)
|
||||||
|
|
||||||
|
If the app crashes directly in Release, before reverting all your changes try to clean /bin and /obj
|
||||||
|
Also, if you reverted some changes, clean /bin and /obj again before thinking it still doesn't work
|
Loading…
Reference in New Issue
Block a user