Skip to content

Commit

Permalink
Rename demo-misc-vp9-opus-sw to demo-ext
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=117314924
  • Loading branch information
erdemguven authored and ojw28 committed Mar 16, 2016
1 parent 1d37199 commit 806e566
Show file tree
Hide file tree
Showing 24 changed files with 15 additions and 21 deletions.
6 changes: 6 additions & 0 deletions demo_ext/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Extensions Demo #

A demo app that shows how to use the ExoPlayer extensions in your app.

The demo app depends on the VP9, Flac and Opus extensions being configured and
built correctly.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.google.android.exoplayer.demo.vp9opus"
package="com.google.android.exoplayer.demo.ext"
android:versionCode="1506"
android:versionName="1.5.6"
android:theme="@style/RootTheme">
Expand All @@ -35,7 +35,7 @@
android:allowBackup="false"
android:icon="@drawable/ic_launcher">

<activity android:name="com.google.android.exoplayer.demo.vp9opus.SampleChooserActivity"
<activity android:name="com.google.android.exoplayer.demo.ext.SampleChooserActivity"
android:label="@string/app_name"
android:configChanges="keyboardHidden">
<intent-filter>
Expand All @@ -44,7 +44,7 @@
</intent-filter>
</activity>

<activity android:name=".PlayerActivity"
<activity android:name="com.google.android.exoplayer.demo.ext.PlayerActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:theme="@style/PlayerTheme"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer.demo.vp9opus;
package com.google.android.exoplayer.demo.ext;

import com.google.android.exoplayer.DefaultLoadControl;
import com.google.android.exoplayer.LoadControl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer.demo.vp9opus;
package com.google.android.exoplayer.demo.ext;

import com.google.android.exoplayer.AspectRatioFrameLayout;
import com.google.android.exoplayer.ExoPlaybackException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer.demo.vp9opus;
package com.google.android.exoplayer.demo.ext;

import com.google.android.exoplayer.util.Util;

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

<string name="app_name">WebM ExoPlayer Demo</string>
<string name="app_name">ExoPlayer Extensions Demo</string>
<string name="choose_file">Choose File</string>
<string name="play">Play</string>
<string name="current_path">
Expand Down
File renamed without changes.
7 changes: 0 additions & 7 deletions demo_misc/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions demo_misc/vp9_opus_sw/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
// limitations under the License.
include ':library'
include ':demo'
include ':demo-misc-vp9-opus-sw'
include ':demo-ext'
include ':playbacktests'
include ':extension-opus'
include ':extension-vp9'
include ':extension-okhttp'
include ':extension-flac'

project(':demo-misc-vp9-opus-sw').projectDir = new File(settingsDir, 'demo_misc/vp9_opus_sw')
project(':demo-ext').projectDir = new File(settingsDir, 'demo_ext')
project(':extension-opus').projectDir = new File(settingsDir, 'extensions/opus')
project(':extension-vp9').projectDir = new File(settingsDir, 'extensions/vp9')
project(':extension-okhttp').projectDir = new File(settingsDir, 'extensions/okhttp')
Expand Down

0 comments on commit 806e566

Please sign in to comment.