Skip to content

Commit

Permalink
Format XML
Browse files Browse the repository at this point in the history
  • Loading branch information
abaker committed Mar 30, 2018
1 parent 02a112e commit 972253a
Show file tree
Hide file tree
Showing 206 changed files with 5,287 additions and 5,047 deletions.
12 changes: 6 additions & 6 deletions app/lint.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<lint>
<issue id="MissingTranslation" severity="ignore"/>
<issue id="MissingTranslation" severity="ignore"/>

<issue id="MissingQuantity" severity="ignore"/>
<issue id="ImpliedQuantity" severity="ignore"/>
<issue id="MissingQuantity" severity="ignore"/>
<issue id="ImpliedQuantity" severity="ignore"/>

<issue id="InvalidPackage">
<ignore regexp="net.fortuna.ical4j.util.JCacheTimeZoneCache" />
</issue>
<issue id="InvalidPackage">
<ignore regexp="net.fortuna.ical4j.util.JCacheTimeZoneCache"/>
</issue>
</lint>
44 changes: 22 additions & 22 deletions app/src/amazon/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tasks">
package="org.tasks">

<application>
<!-- Google Analytics -->
<application>
<!-- Google Analytics -->

<receiver
android:name="com.google.android.gms.analytics.AnalyticsReceiver"
android:enabled="true">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
</intent-filter>
</receiver>
<receiver
android:enabled="true"
android:name="com.google.android.gms.analytics.AnalyticsReceiver">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH"/>
</intent-filter>
</receiver>

<service
android:name="com.google.android.gms.analytics.AnalyticsService"
android:enabled="true"
android:exported="false" />
<service
android:enabled="true"
android:exported="false"
android:name="com.google.android.gms.analytics.AnalyticsService"/>

<receiver
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<receiver
android:exported="true"
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER"/>
</intent-filter>
</receiver>

</application>
</application>

</manifest>
4 changes: 2 additions & 2 deletions app/src/amazon/res/values/keys.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="sku_themes">themes</string>
<string name="common_google_play_services_notification_ticker">Google Play services error</string>
<string name="sku_themes">themes</string>
<string name="common_google_play_services_notification_ticker">Google Play services error</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/debug/res/xml/google_analytics.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="ga_trackingId">UA-71449238-1</string>
<string name="ga_trackingId">UA-71449238-1</string>
</resources>
4 changes: 2 additions & 2 deletions app/src/generic/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="org.tasks">
package="org.tasks">

<application/>
<application/>

</manifest>
4 changes: 2 additions & 2 deletions app/src/generic/res/values/keys.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="sku_themes">themes</string>
<string name="common_google_play_services_notification_ticker">Google Play services error</string>
<string name="sku_themes">themes</string>
<string name="common_google_play_services_notification_ticker">Google Play services error</string>
</resources>
149 changes: 77 additions & 72 deletions app/src/googleplay/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,76 +1,81 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.tasks">

<!-- **************** -->
<!-- in-app donations -->
<!-- **************** -->
<uses-permission android:name="com.android.vending.BILLING" />

<!-- ************************ -->
<!-- location based reminders -->
<!-- ************************ -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />

<!-- **************** -->
<!-- google task sync -->
<!-- **************** -->
<uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />

<application tools:ignore="GoogleAppIndexingWarning">

<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAI49v5bBusi_bq1bgLBB1LIsepNV0eBrFkQrBZkw" />

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />

<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyBq82FiK4U8Ke2TV_F8UjDZwgtSy8K9cyQ"/>

<service android:name=".location.GeofenceTransitionsIntentService"/>

<activity android:name=".activities.GoogleTaskListSettingsActivity" />

<activity
android:name="com.todoroo.astrid.gtasks.auth.GtasksLoginActivity"
android:theme="@style/TranslucentDialog" />

<activity
android:name=".sync.SynchronizationPreferences"
android:label="@string/synchronization"
android:theme="@style/Tasks" />

<!-- Google Analytics -->

<receiver
android:name="com.google.android.gms.analytics.AnalyticsReceiver"
android:enabled="true">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
</intent-filter>
</receiver>

<service
android:name="com.google.android.gms.analytics.AnalyticsService"
android:enabled="true"
android:exported="false" />

<receiver
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
</application>
xmlns:tools="http://schemas.android.com/tools"
package="org.tasks">

<!-- **************** -->
<!-- in-app donations -->
<!-- **************** -->
<uses-permission android:name="com.android.vending.BILLING"/>

<!-- ************************ -->
<!-- location based reminders -->
<!-- ************************ -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

<uses-feature
android:name="android.hardware.location"
android:required="false"/>
<uses-feature
android:name="android.hardware.location.gps"
android:required="false"/>

<!-- **************** -->
<!-- google task sync -->
<!-- **************** -->
<uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>

<application tools:ignore="GoogleAppIndexingWarning">

<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAI49v5bBusi_bq1bgLBB1LIsepNV0eBrFkQrBZkw"/>

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>

<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyBq82FiK4U8Ke2TV_F8UjDZwgtSy8K9cyQ"/>

<service android:name=".location.GeofenceTransitionsIntentService"/>

<activity android:name=".activities.GoogleTaskListSettingsActivity"/>

<activity
android:name="com.todoroo.astrid.gtasks.auth.GtasksLoginActivity"
android:theme="@style/TranslucentDialog"/>

<activity
android:label="@string/synchronization"
android:name=".sync.SynchronizationPreferences"
android:theme="@style/Tasks"/>

<!-- Google Analytics -->

<receiver
android:enabled="true"
android:name="com.google.android.gms.analytics.AnalyticsReceiver">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH"/>
</intent-filter>
</receiver>

<service
android:enabled="true"
android:exported="false"
android:name="com.google.android.gms.analytics.AnalyticsService"/>

<receiver
android:exported="true"
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER"/>
</intent-filter>
</receiver>
</application>

</manifest>
4 changes: 2 additions & 2 deletions app/src/googleplay/res/values/bools.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="location_enabled">true</bool>
<bool name="google_play_store_available">true</bool>
<bool name="location_enabled">true</bool>
<bool name="google_play_store_available">true</bool>
</resources>
6 changes: 3 additions & 3 deletions app/src/googleplay/res/values/keys.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="gp_key">MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk8mXRE3dDXwtinUILCEzKjov2rxs3kZbLRzNrcjFWXpG9OEsUzRGLzqEN+WwibVuMRpZLj/+IxbU2sJWq/M0q+90rOhmXn46ZPeNyr77IqX2pWKIAWpzBoWq/mshRwtm9m1FIiGdBNlXrhSE7u3TGB5FuEuuSqKWvWzxeqQ7fHmlM04Lqrh1mN3FaMne8rWv+DWVHDbLrtnXBuC36glOAj17HxrzaE2v6Pv7Df3QefJ3rM1+0fAp/5jNInaP0qHAlG8WTbUmDShQ5kG3urbv3HLByyx6TSqhmNudXUK/6TusvIj50OptAG7x+UFYf956dD3diXhY3yoICvyFWx1sNwIDAQAB</string>
<string name="sku_themes">themes</string>
<string name="play_services_available">play_services_available</string>
<string name="gp_key">MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk8mXRE3dDXwtinUILCEzKjov2rxs3kZbLRzNrcjFWXpG9OEsUzRGLzqEN+WwibVuMRpZLj/+IxbU2sJWq/M0q+90rOhmXn46ZPeNyr77IqX2pWKIAWpzBoWq/mshRwtm9m1FIiGdBNlXrhSE7u3TGB5FuEuuSqKWvWzxeqQ7fHmlM04Lqrh1mN3FaMne8rWv+DWVHDbLrtnXBuC36glOAj17HxrzaE2v6Pv7Df3QefJ3rM1+0fAp/5jNInaP0qHAlG8WTbUmDShQ5kG3urbv3HLByyx6TSqhmNudXUK/6TusvIj50OptAG7x+UFYf956dD3diXhY3yoICvyFWx1sNwIDAQAB</string>
<string name="sku_themes">themes</string>
<string name="play_services_available">play_services_available</string>
</resources>
Loading

0 comments on commit 972253a

Please sign in to comment.