File tree 8 files changed +11
-21
lines changed
java/net/danlew/rxsubscriptions
8 files changed +11
-21
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ android {
14
14
}
15
15
16
16
dependencies {
17
- compile ' com.android.support:appcompat-v7:22.0.0'
18
17
compile ' io.reactivex:rxjava:1.0.8'
19
18
compile ' io.reactivex:rxandroid:0.24.0'
20
19
compile ' io.reactivex:rxandroid-framework:0.24.0'
Original file line number Diff line number Diff line change 7
7
android : name =" .SubscriptionsApplication"
8
8
android : allowBackup =" true"
9
9
android : icon =" @mipmap/ic_launcher"
10
- android : label =" @string/app_name"
11
- android : theme =" @style/AppTheme" >
10
+ android : label =" @string/app_name" >
12
11
13
12
<activity
14
13
android : name =" .MainActivity"
Original file line number Diff line number Diff line change 1
1
package net .danlew .rxsubscriptions ;
2
2
3
+ import android .app .Activity ;
3
4
import android .content .Context ;
4
5
import android .content .Intent ;
5
6
import android .os .Bundle ;
6
- import android .support .v7 .app .ActionBarActivity ;
7
7
import android .widget .TextView ;
8
8
import butterknife .ButterKnife ;
9
9
import butterknife .InjectView ;
14
14
15
15
import java .util .concurrent .TimeUnit ;
16
16
17
- public class BindActivity extends ActionBarActivity {
17
+ public class BindActivity extends Activity {
18
18
19
19
private static final String FIX_LEAK = "FIX_LEAK" ;
20
20
Original file line number Diff line number Diff line change 1
1
package net .danlew .rxsubscriptions ;
2
2
3
+ import android .app .Activity ;
3
4
import android .content .Context ;
4
5
import android .content .Intent ;
5
6
import android .os .Bundle ;
6
- import android .support .v7 .app .ActionBarActivity ;
7
7
import rx .Observable ;
8
8
import rx .Subscription ;
9
9
import rx .functions .Action1 ;
10
10
import timber .log .Timber ;
11
11
12
12
import java .util .concurrent .TimeUnit ;
13
13
14
- public class LeakingActivity extends ActionBarActivity {
14
+ public class LeakingActivity extends Activity {
15
15
16
16
private static final String FIX_LEAK = "FIX_LEAK" ;
17
17
Original file line number Diff line number Diff line change 1
1
package net .danlew .rxsubscriptions ;
2
2
3
+ import android .app .Activity ;
3
4
import android .content .Intent ;
4
5
import android .os .Bundle ;
5
- import android .support .v7 .app .ActionBarActivity ;
6
6
import butterknife .ButterKnife ;
7
7
import butterknife .OnClick ;
8
8
9
- public class MainActivity extends ActionBarActivity {
9
+ public class MainActivity extends Activity {
10
10
11
11
@ Override
12
12
protected void onCreate (Bundle savedInstanceState ) {
Original file line number Diff line number Diff line change 1
1
package net .danlew .rxsubscriptions ;
2
2
3
+ import android .app .Activity ;
3
4
import android .os .Bundle ;
4
- import android .support .v7 .app .ActionBarActivity ;
5
5
import rx .Observable ;
6
6
7
- public class NeverActivity extends ActionBarActivity {
7
+ public class NeverActivity extends Activity {
8
8
9
9
@ Override
10
10
protected void onCreate (Bundle savedInstanceState ) {
Original file line number Diff line number Diff line change 1
1
package net .danlew .rxsubscriptions ;
2
2
3
+ import android .app .Activity ;
3
4
import android .content .Context ;
4
5
import android .content .Intent ;
5
6
import android .os .Bundle ;
6
- import android .support .v7 .app .ActionBarActivity ;
7
7
import rx .Observable ;
8
8
import rx .Subscription ;
9
9
import rx .functions .Action1 ;
10
10
import timber .log .Timber ;
11
11
12
12
import java .util .concurrent .TimeUnit ;
13
13
14
- public class TempLeakingActivity extends ActionBarActivity {
14
+ public class TempLeakingActivity extends Activity {
15
15
16
16
private static final String FIX_LEAK = "FIX_LEAK" ;
17
17
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments