android - The vulnerabilities were addressed in OpenSSL 1.02f/1.01r. To confirm your OpenSSL version, you can do a grep search for: -
i got issue google playstore , unable fix issue. doing wrong?
my gradle file:
apply plugin: 'com.android.application' android { compilesdkversion 25 buildtoolsversion "25.0.3" defaultconfig { applicationid "com.wiise" minsdkversion 17 targetsdkversion 25 versioncode 3 versionname "1.2" testinstrumentationrunner "android.support.test.runner.androidjunitrunner" multidexenabled true } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } } allprojects { repositories { maven { url "https://jitpack.io" } } } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') androidtestcompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile files('libs/youtubeandroidplayerapi.jar') compile 'com.android.support:multidex:1.0.1' compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:cardview-v7:25.3.1' compile 'com.android.support:design:25.3.1' compile 'me.relex:circleindicator:1.2.2@aar' compile 'com.facebook.android:facebook-android-sdk:4.20.0' compile 'com.google.android.gms:play-services:10.2.1' compile 'com.google.android.gms:play-services-auth:10.2.1' compile 'de.hdodenhof:circleimageview:2.1.0' compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' compile 'com.github.halilozercan:bettervideoplayer:1.1.0' testcompile 'junit:junit:4.12' } apply plugin: 'com.google.gms.google-services'
Comments
Post a Comment