Skip to content

Instantly share code, notes, and snippets.

View Holofox's full-sized avatar
🦊
I love foxes

Holofox

🦊
I love foxes
View GitHub Profile
@lukaselmer
lukaselmer / ExportOptions.plist
Created January 11, 2020 21:10
Create a Flutter .apk and .ipa file to upload it to Firebase App Distribution
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>ad-hoc</string>
<key>uploadBitcode</key>
<false/>
<key>uploadSymbols</key>
<true/>
@JoshSkrzypczak
JoshSkrzypczak / AndroidManifest.xml
Last active January 17, 2022 14:12
Android Settings Screen using the v7.preference library
<manifest package="com.yourpackage"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
...
...
...
android:theme="@style/AppTheme">
...