Skip to content

Commit

Permalink
Update manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsun committed Feb 16, 2013
1 parent 6eff8aa commit bc16521
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pursuer.reader.easyrss"
android:versionCode="100"
android:versionCode="101"
android:versionName="@string/Version" >

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="16" />
android:targetSdkVersion="21" />

<supports-screens
android:largeScreens="true"
Expand All @@ -23,6 +23,7 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:label="@string/AppName" >
Expand Down Expand Up @@ -52,7 +53,8 @@

<provider
android:name="com.pursuer.reader.easyrss.data.DataProvider"
android:authorities="com.pursuer.reader.easyrss.data" />
android:authorities="com.pursuer.reader.easyrss.data"
android:exported="false" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion res/values/version.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="Version">0.5.16</string>
<string name="Version">0.5.16.01</string>

</resources>

0 comments on commit bc16521

Please sign in to comment.