SDL: OUYA icon and manifest, for that one user who still got an OUYA in his living room and won't throw it away just because someone else decides that it's dead
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -18,3 +18,4 @@
|
||||
/project/themes/converter
|
||||
/project/jni/android-support
|
||||
/project/res/drawable/banner.png
|
||||
/project/res/drawable-xhdpi/ouya_icon.png
|
||||
|
||||
@@ -1063,6 +1063,15 @@ done
|
||||
rm -rf project/bin/classes
|
||||
rm -rf project/bin/res
|
||||
|
||||
# Generate OUYA icon, for that one user who still got an OUYA in his living room and won't throw it away just because someone else decides that it's dead
|
||||
rm -rf project/res/drawable-xhdpi/ouya_icon.png
|
||||
if which convert > /dev/null; then
|
||||
mkdir -p project/res/drawable-xhdpi
|
||||
convert project/res/drawable/icon.png -resize '732x412!' project/res/drawable-xhdpi/ouya_icon.png
|
||||
else
|
||||
echo "Install ImageMagick to auto-resize Ouya icon from icon.png"
|
||||
fi
|
||||
|
||||
./copyAssets.sh || exit 1
|
||||
|
||||
rm -rf project/jni/android-support
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" /> <!-- Samsung's multiwindow -->
|
||||
<action android:name="com.sec.android.airview.HOVER" /> <!-- Stupid Samsung requires their own intent for finger-hover events -->
|
||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" /> <!-- Android TV requires this -->
|
||||
<category android:name="tv.ouya.intent.category.GAME" /> <!-- For that one user who still got an OUYA in his living room and won't throw it away just because someone else decides that it's dead -->
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- ==ADMOB== --> <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize|layoutDirection"/>
|
||||
|
||||
Reference in New Issue
Block a user