Skip to content

Commit

Permalink
changed version code in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkienl committed Jun 16, 2014
1 parent 2370c0e commit 8d406b4
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 2 deletions.
12 changes: 10 additions & 2 deletions BronyLiveWallpaper/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,20 @@ limitations under the License.
<!--
Wallpaper:
http://austiniousi.deviantart.com/art/Ponyville-Background-324408425
Changelog:
1.4:
Added new Ponies
https://github.com/frankkienl/BronyLiveWallpaper/issues/8
1.3.1:
Ponies now have a more random starting position
//-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="nl.frankkie.bronylivewallpaper"
android:versionCode="9"
android:versionCode="11"
android:installLocation="auto"
android:versionName="1.3">
android:versionName="1.4">


<uses-sdk
Expand Down
71 changes: 71 additions & 0 deletions BronyLiveWallpaper/src/main/AndroidManifest_OLD.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!-- Copyright (C) 2013 FrankkieNL
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
Wallpaper:
http://austiniousi.deviantart.com/art/Ponyville-Background-324408425
//-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="nl.frankkie.bronylivewallpaper"
android:versionCode="9"
android:installLocation="auto"
android:versionName="1.3">


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

<uses-feature
android:name="android.software.live_wallpaper"
android:required="true"/>

<application
android:allowBackup="true"
android:debuggable="false"
android:theme="@style/AppTheme"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher">

<service
android:name=".MyWallpaperService"
android:enabled="true"
android:label="Brony Live Wallpaper"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService"/>
</intent-filter>

<meta-data
android:name="android.service.wallpaper"
android:resource="@xml/wallpaper">
</meta-data>
</service>

<activity
android:name=".MyPreferencesActivity"
android:exported="true"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

<activity android:name=".CreditsActivity" />

</application>

</manifest>
Binary file removed BronyLiveWallpaper/src/main/assets/Aloe/Thumbs.db
Binary file not shown.
Binary file removed BronyLiveWallpaper/src/main/assets/Angel/Thumbs.db
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 8d406b4

Please sign in to comment.