Skip to content

Commit 720139f

Browse files
committed
delete some activities
delete arslan delete FragmentTabHostDemo delete MySwipeActivity delete DrawerActivity
1 parent 83a9dd9 commit 720139f

File tree

136 files changed

+236
-4290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+236
-4290
lines changed

FisherAndroidChart/src/main/res/values/strings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ apply plugin: 'com.github.dcendents.android-maven'
44
group='com.github.RustFisher'
55

66
android {
7-
compileSdkVersion 24
8-
buildToolsVersion "24.0.2"
7+
compileSdkVersion 25
8+
buildToolsVersion '25.0.2'
99

1010
defaultConfig {
1111
minSdkVersion 17
12-
targetSdkVersion 24
12+
targetSdkVersion 25
1313
versionCode 1
1414
versionName "1.0"
1515
}
@@ -22,7 +22,8 @@ android {
2222
}
2323

2424
dependencies {
25-
compile fileTree(dir: 'libs', include: ['*.jar'])
25+
compile fileTree(include: ['*.jar'], dir: 'libs')
2626
testCompile 'junit:junit:4.12'
27-
compile 'com.android.support:appcompat-v7:24.2.1'
27+
compile 'com.android.support:support-v4:25.1.0'
28+
compile 'com.android.support:appcompat-v7:25.1.0'
2829
}

FisherAndroidChart/src/androidTest/java/com/rustfisher/fisherandroidchart/ApplicationTest.java renamed to FisherView/src/androidTest/java/com/rustfisher/view/ApplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.rustfisher.fisherandroidchart;
1+
package com.rustfisher.view;
22

33
import android.app.Application;
44
import android.test.ApplicationTestCase;

FisherAndroidChart/src/main/AndroidManifest.xml renamed to FisherView/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.rustfisher.fisherandroidchart">
2+
package="com.rustfisher.view">
33

44
<application
55
android:allowBackup="true"

FisherAndroidChart/src/main/java/com/rustfisher/fisherandroidchart/BulbView.java renamed to FisherView/src/main/java/com/rustfisher/view/BulbView.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.rustfisher.fisherandroidchart;
1+
package com.rustfisher.view;
22

33
import android.content.Context;
44
import android.content.res.TypedArray;
@@ -8,7 +8,6 @@
88
import android.graphics.RectF;
99
import android.graphics.SweepGradient;
1010
import android.util.AttributeSet;
11-
import android.util.Log;
1211
import android.util.TypedValue;
1312
import android.widget.ImageView;
1413

FisherAndroidChart/src/main/java/com/rustfisher/fisherandroidchart/DashboardProgressView.java renamed to FisherView/src/main/java/com/rustfisher/view/DashboardProgressView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.rustfisher.fisherandroidchart;
1+
package com.rustfisher.view;
22

33
import android.content.Context;
44
import android.content.res.TypedArray;

FisherAndroidChart/src/main/java/com/rustfisher/fisherandroidchart/Info.java renamed to FisherView/src/main/java/com/rustfisher/view/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.rustfisher.fisherandroidchart;
1+
package com.rustfisher.view;
22

33
public final class Info {
44
public static String getInfo() {

FisherAndroidChart/src/main/java/com/rustfisher/fisherandroidchart/MultiLinesChartSView.java renamed to FisherView/src/main/java/com/rustfisher/view/MultiLinesChartSView.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
package com.rustfisher.fisherandroidchart;
1+
package com.rustfisher.view;
22

33
import android.content.Context;
44
import android.graphics.Canvas;
55
import android.graphics.Color;
66
import android.graphics.Paint;
77
import android.graphics.Path;
8-
import android.support.annotation.Nullable;
98
import android.support.v4.view.MotionEventCompat;
109
import android.util.AttributeSet;
1110
import android.util.Log;

0 commit comments

Comments
 (0)