prepare for releasability
This commit is contained in:
parent
6408be7646
commit
2fc66ff478
3 changed files with 16 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ bin/
|
|||
obj/
|
||||
/packages/
|
||||
.idea
|
||||
.vs
|
|
@ -45,6 +45,14 @@
|
|||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
||||
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||
<AotAssemblies>false</AotAssemblies>
|
||||
<EnableLLVM>false</EnableLLVM>
|
||||
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
|
||||
<BundleAssemblies>false</BundleAssemblies>
|
||||
<MandroidI18n/>
|
||||
<AndroidPackageFormat>aab</AndroidPackageFormat>
|
||||
<AndroidUseAapt2>true</AndroidUseAapt2>
|
||||
<AndroidCreatePackagePerAbi>false</AndroidCreatePackagePerAbi>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="TouchyTickets.Android"
|
||||
android:versionCode="030" android:versionName="0.3.0">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28"/>
|
||||
<application android:label="Touchy Tickets"/>
|
||||
<permission android:name="ACCESS_NETWORK_STATE"/>
|
||||
<permission android:name="INTERNET"/>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.ellpeck.touchytickets" android:versionCode="031" android:versionName="0.3.1" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
|
||||
<application android:label="Touchy Tickets" />
|
||||
<permission android:name="ACCESS_NETWORK_STATE" />
|
||||
<permission android:name="INTERNET" />
|
||||
</manifest>
|
Loading…
Reference in a new issue