Skip to content

Instantly share code, notes, and snippets.

View Andrewwallace59's full-sized avatar

Andy Andrewwallace59

View GitHub Profile
@cutiko
cutiko / AndroidManifest.xml
Last active March 23, 2018 13:44
Firebase Twitter login and Fabric crash solution guid
<!--You can see here, that there are 2 attributes added. First tools:replace="android:supportsRtl" is ment to fix the rtl merge conflict
and android:name=".YourApp" is ment to register the class extending application as your app-->
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="false"
android:theme="@style/AppTheme"
android:name=".YourApp"