Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
Make MonitoredActivity abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
jdamcd committed Mar 18, 2014
1 parent 735f855 commit ef9eab9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ before_install:
# For a full list, run `android list sdk -a --extended`
# Note that sysimg-19 downloads only ARM, because only the first license query is accepted.
- echo yes | android update sdk --filter platform-tools --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter build-tools-19.0.0 --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter build-tools-19.0.3 --no-ui --force > /dev/null
- echo yes | android update sdk --filter android-19 --no-ui --force > /dev/null
- echo yes | android update sdk --filter sysimg-19 --no-ui --force > /dev/null
- echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null
Expand All @@ -27,7 +27,8 @@ before_install:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &

install: true
install:
- ./gradlew :lib:build

before_script:
- adb wait-for-device
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {

allprojects {
group = 'com.soundcloud.android'
version = '0.9.5'
version = '0.9.6'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/*
* Modified from original in AOSP.
*/
public class MonitoredActivity extends Activity {
public abstract class MonitoredActivity extends Activity {

private final ArrayList<LifeCycleListener> mListeners =
new ArrayList<LifeCycleListener>();
Expand Down

0 comments on commit ef9eab9

Please sign in to comment.