Skip to content

Commit

Permalink
修改jar顺序
Browse files Browse the repository at this point in the history
  • Loading branch information
zjlong committed Apr 26, 2016
1 parent 88049a2 commit c8b2b45
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

import android.os.Bundle;

import com.common.view.base.SwipeBackActivity;
import com.common.view.base.BaseSwipeBackActivity;
import com.common.view.widget.SwipeBackLayout;
import com.matto.R;

/**
* author meikoz on 2016/4/19.
* email [email protected]
*/
public class AndroidSwipActivity extends SwipeBackActivity {
public class AndroidSwipActivity extends BaseSwipeBackActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down
7 changes: 4 additions & 3 deletions basic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ dependencies {
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'

// Glide
compile 'com.github.bumptech.glide:glide:3.7.0'

// butter knife
compile 'com.android.support:recyclerview-v7:23.2.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:recyclerview-v7:23.2.0'

//adapter
compile 'com.joanzapata.android:base-adapter-helper:1.1.11'
Expand All @@ -40,6 +43,4 @@ dependencies {
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
compile 'com.squareup.okhttp3:logging-interceptor:3.1.2'

// Glide
compile 'com.github.bumptech.glide:glide:3.7.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Created by Eric on 15/3/3.
*/
public abstract class SwipeBackActivity extends AppCompatActivity implements SwipeBackLayout.SwipeBackListener {
public abstract class BaseSwipeBackActivity extends AppCompatActivity implements SwipeBackLayout.SwipeBackListener {

private SwipeBackLayout swipeBackLayout;
private ImageView ivShadow;
Expand Down

0 comments on commit c8b2b45

Please sign in to comment.