-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Gradle Build in Android Studio #180
Comments
@lokmansahraoui There is no version 22.0.0 for this library |
thank you, i just figured all out by implementing the /library folder as a module on android studio, well when i call an object like : private StaggerdGridView mSGridView and then call it in my java from the layout with mSGridView = (StaggeredGridView) rootView.findViewById(R.id.grid_view); Knowing that in my XML layout i added it tells me uknown app:item_margin and app:column_count in my package |
Make sure you copy over the You should really consider just including the library dependency instead of copying over files to your project in a module. That way you can be up-to-date with any improvements to this library. Just add this to your dependency instead |
So i delete the imported module (/library) and add |
yes it's that simple :) |
:( same result as when i put 22.0.0 yesterday, i'm using the app:Build.gradle |
at LAst ! :D ! the problem was in my android studio beacause of the update the offline mode was activated, it was like i hadn't internet connection :) just went to File/Settings/Gradle...; and then unchecked offline mode |
I am facing the same problem. None of the solutions are working for me. |
Hello, when i copy and paste these lines in android studio's gradle.build it tells me that it can't resolve it
repositories {
mavenCentral()
}
dependencies {
compile 'com.etsy.android.grid:library:22.0.0' // read below comment
}
The text was updated successfully, but these errors were encountered: