Support
Quality
Security
License
Reuse
kandi has reviewed SwipeBackLayout and discovered the below as its top functions. This is intended to give you an instant insight into SwipeBackLayout implemented functionality, and help decide if they suit your requirements.
An Android library that help you to build app with swipe back gesture.
default
public class DemoActivity extends SwipeBackActivity implements View.OnClickListener {
private int[] mBgColors;
private static int mBgIndex = 0;
private String mKeyTrackingMode;
private RadioGroup mTrackingModeGroup;
private SwipeBackLayout mSwipeBackLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_demo);
changeActionBarColor();
findViews();
mKeyTrackingMode = getString(R.string.key_tracking_mode);
mSwipeBackLayout = getSwipeBackLayout();
mTrackingModeGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
int edgeFlag;
switch (checkedId) {
case R.id.mode_left:
edgeFlag = SwipeBackLayout.EDGE_LEFT;
break;
case R.id.mode_right:
edgeFlag = SwipeBackLayout.EDGE_RIGHT;
break;
case R.id.mode_bottom:
edgeFlag = SwipeBackLayout.EDGE_BOTTOM;
break;
default:
edgeFlag = SwipeBackLayout.EDGE_ALL;
}
mSwipeBackLayout.setEdgeTrackingEnabled(edgeFlag);
saveTrackingMode(edgeFlag);
}
});
}
...
Gradle sync failed - Failed to resolve: appcompat-v7:26
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
QUESTION
Gradle sync failed - Failed to resolve: appcompat-v7:26
Asked 2019-Apr-24 at 11:12I use this code in my app/build.gradle.
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.avizhegroup.android.dsmmaps"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
useLibrary 'org.apache.http.legacy'
}
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:26.1.0'
implementation 'com.google.android.gms:play-services-maps:11.0.4'
implementation 'com.android.volley:volley:1.1.0'
implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
implementation 'com.github.zookey:universalpreferences:0.0.4'
implementation 'com.google.android.gms:play-services-location:11.0.4'
implementation 'com.jakewharton:butterknife:8.8.1'
implementation 'com.github.bosphere.android-filelogger:filelogger:1.0.3'
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
implementation 'com.orhanobut:logger:2.2.0'
implementation 'com.orhanobut:logger:2.1.1'
implementation 'com.orhanobut:dialogplus:1.11@aar'
implementation files('libs/usbdriver.jar')
implementation files('src/main/libs/rlmotgusbdriver.jar')
implementation 'me.imid.swipebacklayout.lib:library:1.1.0'
implementation 'com.felipecsl.asymmetricgridview:library:2.0.1'
implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
}
I have a problem when syncing Gradle. these problems have occurred:
ERROR: Failed to resolve: design
Affected Modules: app
ERROR: Failed to resolve: appcompat-v7
Affected Modules: app
ERROR: Failed to resolve: transition
Affected Modules: app
ERROR: Failed to resolve: recyclerview-v7
Affected Modules: app
ERROR: Failed to resolve: support-v4
Affected Modules: app
ERROR: Failed to resolve: support-media-compat
Affected Modules: app
ERROR: Failed to resolve: animated-vector-drawable
Affected Modules: app
ERROR: Failed to resolve: support-vector-drawable
Affected Modules: app
ERROR: Failed to resolve: support-fragment
Affected Modules: app
ERROR: Failed to resolve: support-core-utils
Affected Modules: app
ERROR: Failed to resolve: support-core-ui
Affected Modules: app
ERROR: Failed to resolve: support-compat
Affected Modules: app
ERROR: Failed to resolve: support-annotations
Affected Modules: app
ERROR: Failed to resolve: runtime
Affected Modules: app
ERROR: Failed to resolve: common
Affected Modules: app
I uncheck variant in Experimental in preferences, change dependencies, change SDK version, change grade version and ... . this code works in windows, but in Mac doesn't.
I use constraint-layout and AndroidStudio3.3.2
How can I correct this?
Thanks
ANSWER
Answered 2019-Apr-08 at 07:14Add google maven to your root build.gradle
like below:
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
No vulnerabilities reported
Save this library and start creating your kit
Save this library and start creating your kit