Consistent formatting

This commit is contained in:
Lyubo Marinov 2017-07-16 02:23:01 -05:00
parent ea0c333f4b
commit 9a295723cf
2 changed files with 34 additions and 34 deletions

View File

@ -1,36 +1,36 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.jitsi.meet"> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.jitsi.meet">
<application <application
android:allowBackup="true" android:allowBackup="true"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme"> android:launchMode="singleTask"
<activity android:name=".MainActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:windowSoftInputMode="adjustResize">
android:label="@string/app_name" <intent-filter>
android:launchMode="singleTask" <action android:name="android.intent.action.MAIN" />
android:name=".MainActivity" <category android:name="android.intent.category.LAUNCHER" />
android:windowSoftInputMode="adjustResize"> </intent-filter>
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.BROWSABLE" />
</intent-filter> <category android:name="android.intent.category.DEFAULT" />
<intent-filter> <data android:host="beta.hipchat.me" android:scheme="https" />
<action android:name="android.intent.action.VIEW" /> <data android:host="beta.meet.jit.si" android:scheme="https" />
<category android:name="android.intent.category.BROWSABLE" /> <data android:host="chaos.hipchat.me" android:scheme="https" />
<category android:name="android.intent.category.DEFAULT" /> <data android:host="enso.me" android:scheme="https" />
<data android:host="beta.hipchat.me" android:scheme="https" /> <data android:host="hipchat.me" android:scheme="https" />
<data android:host="beta.meet.jit.si" android:scheme="https" /> <data android:host="meet.jit.si" android:scheme="https" />
<data android:host="chaos.hipchat.me" android:scheme="https" /> </intent-filter>
<data android:host="enso.me" android:scheme="https" /> <intent-filter>
<data android:host="hipchat.me" android:scheme="https" /> <action android:name="android.intent.action.VIEW" />
<data android:host="meet.jit.si" android:scheme="https" /> <category android:name="android.intent.category.BROWSABLE" />
</intent-filter> <category android:name="android.intent.category.DEFAULT" />
<intent-filter> <data android:scheme="org.jitsi.meet" />
<action android:name="android.intent.action.VIEW" /> </intent-filter>
<category android:name="android.intent.category.BROWSABLE" /> </activity>
<category android:name="android.intent.category.DEFAULT" /> </application>
<data android:scheme="org.jitsi.meet" />
</intent-filter>
</activity>
</application>
</manifest> </manifest>

View File

@ -100,7 +100,7 @@
"webpack-dev-server": "2.4.5" "webpack-dev-server": "2.4.5"
}, },
"engines": { "engines": {
"node": ">=6.0.0" "node": ">=6.0.0"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"scripts": { "scripts": {