首先,这里和这里之前已经问过这个问题
我已经使用这个命令$ unzip -p YourApp.apk | strings | grep "OpenSSL"
来获取 OpenSSL 版本,我得到了
OpenSSL 1.0.0e 2011 年 9 月 6 日。
我在应用程序中使用了许多库 这是我的 gradle
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':facebook')
compile project(':taskspottingsdk')
compile project(':uil_library')
compile project(':viewPagerIndicatorLib')
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.google.maps.android:android-maps-utils:0.3.+'
compile project(':audio_recorder')
compile project(':material_dialogs_library')
compile 'com.splunk.mint:mint:4.1'
compile project(':better_pickers_library')
compile project(':zxscanlib')
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile project(':wScratchViewLibrary')
compile project(':drag-sort-listview')
compile project(':mobihelp_sdk_android_v1.4')
compile('org.apache.httpcomponents:httpmime:4.3.6') {
exclude module: 'httpclient'
}
compile 'org.apache.httpcomponents:httpclient-android:4.3.5'
compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
transitive = true;
}
compile files('libs/android-1.2.2675.jar')
compile files('libs/audible-magic-plugin-1.2.2675.jar')
compile files('libs/domain-1.2.2675.jar')
compile files('libs/wms-transport-wowz.jar')
compile 'de.hdodenhof:circleimageview:2.0.0'
}
找出哪个库正在使用 OpenSSL 的任何快速简便的方法也是如此。
谢谢。