[Xamarin.Android.Build.Tasks ] BuildApk shouldn't use abi for libmono-android*.so. (#50)
Fixes commit 05aebd7
, which alters the filenames
but not the *use* of those filenames.
This commit is contained in:
Родитель
4ec06ac92c
Коммит
260a43c93e
|
@ -436,7 +436,7 @@ namespace Xamarin.Android.Tasks
|
|||
bool use_shared_runtime = String.Equals (UseSharedRuntime, "true", StringComparison.OrdinalIgnoreCase);
|
||||
var abis = supportedAbis.Split (new char[] { ',', ';' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
foreach (var abi in abis) {
|
||||
string library = string.Format ("libmono-android.{0}.{1}.so", _Debug ? "debug" : "release", abi);
|
||||
string library = string.Format ("libmono-android.{0}.so", _Debug ? "debug" : "release");
|
||||
var path = Path.Combine (root, "lib", abi, library);
|
||||
apk.AddEntry (string.Format ("lib/{0}/libmonodroid.so", abi), File.OpenRead (path));
|
||||
if (!use_shared_runtime) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче