Skip to content
This repository was archived by the owner on Apr 24, 2018. It is now read-only.

Commit 73f1908

Browse files
committed
Remove ABS from the sample app
1 parent 99a8da3 commit 73f1908

File tree

5 files changed

+7
-162
lines changed

5 files changed

+7
-162
lines changed

sample/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ repositories {
3434
apply plugin: 'com.android.application'
3535

3636
dependencies {
37-
compile project(':library')
37+
compile project(':library')
3838
//compile 'com.github.amlcurran.showcaseview:library:5.0.0-SNAPSHOT'
39-
compile 'com.android.support:support-v4:19.1.0'
40-
compile 'com.nineoldandroids:library:2.4.0'
41-
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
39+
compile 'com.android.support:support-v4:21.0.0'
40+
compile 'com.nineoldandroids:library:2.4.0'
41+
compile 'com.android.support:appcompat-v7:21.0.0'
4242
}
4343

4444
android {

sample/src/main/java/com/github/amlcurran/showcaseview/sample/SampleActivity.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
import com.github.amlcurran.showcaseview.OnShowcaseEventListener;
3737
import com.github.amlcurran.showcaseview.ShowcaseView;
3838
import com.github.amlcurran.showcaseview.sample.animations.AnimationSampleActivity;
39-
import com.github.amlcurran.showcaseview.sample.v14.ActionItemsSampleActivity;
4039
import com.github.amlcurran.showcaseview.targets.ViewTarget;
4140

4241
public class SampleActivity extends Activity implements View.OnClickListener,
@@ -127,7 +126,7 @@ public void onItemClick(AdapterView<?> adapterView, View view, int position, lon
127126
switch (position) {
128127

129128
case 0:
130-
startActivity(new Intent(this, ActionItemsSampleActivity.class));
129+
//startActivity(new Intent(this, ActionItemsSampleActivity.class));
131130
break;
132131

133132
case 1:

sample/src/main/java/com/github/amlcurran/showcaseview/sample/v14/ActionItemsSampleActivity.java

Lines changed: 0 additions & 73 deletions
This file was deleted.

sample/src/main/java/com/github/amlcurran/showcaseview/sample/v14/MultipleActionItemsSampleActivity.java

Lines changed: 0 additions & 81 deletions
This file was deleted.

sample/src/main/res/values/styles.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141
<item name="sv_titleTextAppearance">@style/CustomTitle</item>
4242
</style>
4343

44-
<style name="SampleTheme" parent="Theme.Sherlock.Light">
44+
<style name="SampleTheme" parent="Theme.AppCompat.Light">
4545
<item name="showcaseViewStyle">@style/CustomShowcaseTheme</item>
4646
</style>
4747

48-
<style name="SampleTheme2" parent="Theme.Sherlock.Light.DarkActionBar">
48+
<style name="SampleTheme2" parent="Theme.AppCompat.Light.DarkActionBar">
4949
<item name="showcaseViewStyle">@style/CustomShowcaseTheme2</item>
5050
</style>
5151

0 commit comments

Comments
 (0)