Skip to content

Commit

Permalink
优化
Browse files Browse the repository at this point in the history
  • Loading branch information
weikaiyun committed Nov 26, 2020
1 parent bfff75e commit af27271
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

//implementation project(':fragmentation')
//implementation project(':fragmentation_swipeback')
implementation project(':fragmentation')
implementation project(':fragmentation_swipeback')

implementation 'com.github.weikaiyun.EasyFragmentation:fragmentation:1.6.2'
implementation 'com.github.weikaiyun.EasyFragmentation:fragmentation_swipeback:1.6.2'
// implementation 'com.github.weikaiyun.EasyFragmentation:fragmentation:1.6.2'
// implementation 'com.github.weikaiyun.EasyFragmentation:fragmentation_swipeback:1.6.2'

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${versions.kotlinx_coroutines}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import com.weikaiyun.fragmentation_swipeback.core.ISwipeBackActivity;
import com.weikaiyun.fragmentation_swipeback.core.SwipeBackActivityDelegate;

public class SwipeBackActivity extends SupportActivity implements ISwipeBackActivity {
abstract public class SwipeBackActivity extends SupportActivity implements ISwipeBackActivity {
final SwipeBackActivityDelegate mDelegate = new SwipeBackActivityDelegate(this);

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import com.weikaiyun.fragmentation_swipeback.core.SwipeBackFragmentDelegate;


public class SwipeBackFragment extends SupportFragment implements ISwipeBackFragment {
abstract public class SwipeBackFragment extends SupportFragment implements ISwipeBackFragment {
final SwipeBackFragmentDelegate mDelegate = new SwipeBackFragmentDelegate(this);

@Override
Expand Down

0 comments on commit af27271

Please sign in to comment.