manupsunny / PinLock

Plugin for adding PIN lock functionality to Android applications
Apache License 2.0
43 stars 16 forks source link

Gradle sync failed #7

Closed kazetrend closed 7 years ago

kazetrend commented 7 years ago

Hey man. I love this lib. Its very simple to use and easy to customize.

The problem is when I tried to add compile 'com.manusunny:pinlock:+' the sync fails and the error messages says it couldnt find the file.

I only got it to work by putting in

compile 'com.manusunny:pinlock:1.4.0'

based on the download tag. So i was wondering if this was the latest version.. If not, then what is it?

I suggest maybe updating the readme for other users as well.

Have an awesome day. Cheers man.

manupsunny commented 7 years ago

Hi @kazetrend,

So sorry for the late reply. When we use '+' in build.gradle, we should enclose it within double quotes. So please try compile "com.manusunny:pinlock:+"

For more information, read this comment on stackoverflow.

kazetrend commented 7 years ago

@manupsunny Thanks for replying nonetheless. I shall remember this the next time I encounter something similar.