This is a version of the multi window patch minus Android Studio changes.
Proguard changes are excluded since there is no config in the master branch
This commit is contained in:
parent
6788e676ea
commit
04d2e60d75
@ -27,14 +27,24 @@
|
|||||||
android:configChanges="orientation|keyboard|keyboardHidden|screenSize">
|
android:configChanges="orientation|keyboard|keyboardHidden|screenSize">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.VIEW"/>
|
<action android:name="android.intent.action.VIEW"/>
|
||||||
|
|
||||||
<category android:name="android.intent.category.DEFAULT"/>
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
<category android:name="android.intent.category.BROWSABLE"/>
|
<category android:name="android.intent.category.BROWSABLE"/>
|
||||||
<data android:host="www.ingress.com" android:scheme="https" android:pathPrefix="/intel"></data>
|
|
||||||
<data android:host="www.ingress.com" android:scheme="http" android:pathPrefix="/intel"></data>
|
<data
|
||||||
|
android:host="www.ingress.com"
|
||||||
|
android:scheme="https"
|
||||||
|
android:pathPrefix="/intel"></data>
|
||||||
|
<data
|
||||||
|
android:host="www.ingress.com"
|
||||||
|
android:scheme="http"
|
||||||
|
android:pathPrefix="/intel"></data>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
@ -43,6 +53,28 @@
|
|||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:configChanges="orientation|keyboard|keyboardHidden|screenSize">
|
android:configChanges="orientation|keyboard|keyboardHidden|screenSize">
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
<uses-library
|
||||||
|
android:name="com.sec.android.app.multiwindow"
|
||||||
|
android:required="false"/>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="com.sec.android.support.multiwindow"
|
||||||
|
android:value="true"/>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
|
||||||
|
android:resource="@dimen/app_defaultsize_w"/>
|
||||||
|
<meta-data
|
||||||
|
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
|
||||||
|
android:resource="@dimen/app_defaultsize_h"/>
|
||||||
|
<meta-data
|
||||||
|
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
|
||||||
|
android:resource="@dimen/app_minimumsize_w"/>
|
||||||
|
<meta-data
|
||||||
|
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
|
||||||
|
android:resource="@dimen/app_minimumsize_h"/>
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -3,5 +3,9 @@
|
|||||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||||
|
<dimen name="app_defaultsize_w">640dip</dimen>
|
||||||
|
<dimen name="app_defaultsize_h">400dip</dimen>
|
||||||
|
<dimen name="app_minimumsize_w">400dip</dimen>
|
||||||
|
<dimen name="app_minimumsize_h">200dip</dimen>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
Loading…
x
Reference in New Issue
Block a user