We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion '22.0.1' defaultConfig { applicationId "com.example.app" minSdkVersion 15 targetSdkVersion 21 versionCode 1 versionName "1.0.1" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.github.ozodrukh:CircularReveal:1.1.0' }
I've got following error.
Error:(31, 13) Failed to resolve: com.github.ozodrukh:CircularReveal:1.1.0
My gradle version : 1.2.3
Is there a problem on dependency?
The text was updated successfully, but these errors were encountered:
add repo url to gradle, it will work fine.
repositories { maven { url "https://jitpack.io" } }
Sorry, something went wrong.
Please add this portion
and rename :
compile 'com.github.ozodrukh:CircularReveal:1.1.0'
to
compile 'com.github.ozodrukh:CircularReveal:1.1.1@aar'
Thanks, it worked.
No branches or pull requests
I've got following error.
Error:(31, 13) Failed to resolve: com.github.ozodrukh:CircularReveal:1.1.0
My gradle version : 1.2.3
Is there a problem on dependency?
The text was updated successfully, but these errors were encountered: