Skip to content

Commit be6b3ad

Browse files
committed
feat(dispatchthread): remove androidx support
1 parent 00747f3 commit be6b3ad

File tree

7 files changed

+306
-296
lines changed

7 files changed

+306
-296
lines changed

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ dependencies {
3535
testImplementation 'junit:junit:4.12'
3636
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
3737
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
38-
// implementation project(path: ':library')
39-
implementation 'com.github.Justson:dispatch-queue:v1.0.3'
38+
implementation project(path: ':library')
39+
// implementation 'com.github.Justson:dispatch-queue:v1.0.4'
4040
}

app/src/main/java/com/queue/sample/MainActivity.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import android.os.Bundle;
44

5-
import com.queue.library.Dispatch;
5+
import com.queue.library.DispatchThread;
66
import com.queue.library.DispatchThread;
77

88
import androidx.appcompat.app.AppCompatActivity;
@@ -58,10 +58,12 @@ protected void onCreate(Bundle savedInstanceState) {
5858
// // output the order "1 2 3 4"
5959
// });
6060

61+
DispatchThread.create();
62+
6163
/**
6264
* use b
6365
*/
64-
Dispatch messageDispatch = DispatchThread.create("message");
66+
DispatchThread messageDispatch = DispatchThread.create("message");
6567

6668
messageDispatch.postRunnable(() -> {
6769
// do you work , work in message thread

library/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ android {
2626
dependencies {
2727
implementation fileTree(dir: 'libs', include: ['*.jar'])
2828

29-
implementation 'androidx.appcompat:appcompat:1.1.0'
3029
testImplementation 'junit:junit:4.12'
3130
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
3231
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

library/src/main/java/com/queue/library/Dispatch.java

-283
This file was deleted.

0 commit comments

Comments
 (0)