scottyab / secure-preferences

Android Shared preference wrapper than encrypts the values of Shared Preferences. It's not bullet proof security but rather a quick win for incrementally making your android app more secure.
1.53k stars 235 forks source link

Could not find com.scottyab:aes-crypto:0.0.2-SNAPSHOT #19

Closed gabrielacosta closed 9 years ago

gabrielacosta commented 9 years ago

Hi Scott,

I was using your library with this configuration in Graddle.

compile 'com.scottyab:aes-crypto:0.0.2-SNAPSHOT' compile('com.scottyab:secure-preferences-lib:0.1.0') { provided 'com.scottyab:aes-crypto:0.0.2-SNAPSHOT' }

It was working fine until last week. I got an error that aes-crypto:002-SNAPSHOT cannot be found.

Could you please check this.

Kind regards,

G

scottyab commented 9 years ago

Hey, I've fixed/removed the dependancy on the SNAPSHOT repo, please use

compile 'com.scottyab:secure-preferences-lib:0.1.1'

IgorGanapolsky commented 9 years ago

I am having the same issue now. compile 'com.scottyab:secure-preferences-lib:0.1.1'. Please advise!

scottyab commented 9 years ago

Hi @IgorGanapolsky, Just to confirm compile 'com.scottyab:aes-crypto:0.0.2-SNAPSHOT' has been promoted to production repo. So omit the -SNAPSHOT.

But for Secure Preferences please remove the previous config:

compile 'com.scottyab:aes-crypto:0.0.2-SNAPSHOT'
compile('com.scottyab:secure-preferences-lib:0.1.0') {
provided 'com.scottyab:aes-crypto:0.0.2-SNAPSHOT'
}

replaced with compile 'com.scottyab:secure-preferences-lib:0.1.1'

If you're still having issue, please post your build.gradle file/error log etc. Thanks

IgorGanapolsky commented 9 years ago

0.1.1 works, thanks.

scottyab commented 9 years ago

ok great, i think this is the same issue @gabrielacosta is having.