我的应用程序不是以签名的apk模式安装

时间:2017-11-28 20:21:15

标签: android

我开发了一个Android应用程序。这是关于维护房子。我在该应用程序中使用firebase。现在的问题是,当我通过Android工作室的USB线安装我的Android手机中的应用程序时,它运行得很好。但如果我想通过分享与某人分享应用程序,它就无法正常工作。 (app not installed)itsh show something like that 出现错误,为什么。 ??即使我从android studio生成签名的apk,它也会显示相同的错误。为什么?任何解决方案请。

这里是清单文件

let reelList = [
  [1, 3, 5, 7, 8, 8],
  [1, 3, 5, 7, 8, 8],
  [1, 3, 5, 7, 8, 8],
  [1, 3, 5, 7, 8, 8],
  [1, 3, 5, 7, 8, 8]
]

reelList.forEach((reel, index, arr) => {
  // Adds the separator (works)
  let v = separate(reel, '-')
  arr[index] = v;
  console.log(v)
})

function separate(arr, value) {
  return arr.reduce((result, element, index, array) => {
    result.push(element)
    index < array.length - 1 && result.push(value)
    return result
  }, []);
}

// Logs the new list to the console (doesn't work)
console.log(reelList);

gradle settings

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sonalirod.alwayswhite">

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/lastfinalw"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/lastfinalw"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".Firstscreen">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name=".Login" />
        <activity android:name=".Interface" />
        <activity android:name=".MainActivity" />
        <activity android:name=".Bazar_Data_Input" />
        <activity android:name=".MealEntry" />
        <activity android:name=".Suggestion" />
        <activity android:name=".admininterface" />
        <activity android:name=".ALogin" />
        <activity android:name=".AdminloginEnter" />
        <activity android:name=".Showalldeposit"></activity>
    </application>

</manifest>

我试图在android 4.4.2(api 19-20)中安装

2 个答案:

答案 0 :(得分:2)

CommonsWare解释了这一切。

https://commonsware.com/blog/2017/10/31/android-studio-3p0-flag-test-only.html

答案 1 :(得分:0)

将GooglePlay以外的APK分发给用户然后需要接受来自Unknow Sources的安装。

此选项位于设置&gt;下安全......&#34;未知来源&#34;

基于链接形式的其他答案: &#34;     Android Studio 3.0设置android:testOnly =&#34; true&#34;在从IDE运行的APK上

对于许多开发人员来说,这并不重要。但是,如果你曾经在你的构建/目录周围放置了一个APK并将其发送给某人,那么只有在除了在Android Studio中运行该应用程序以创建该APK之外的其他内容时才会有效,例如:

  • 使用“Build APK(s)”菜单选项构建应用程序
  • 使用assembleDebug或assembleRelease Gradle任务构建应用程序
  • 使用可能使用这些任务的其他内容构建应用程序,例如CI服务器 &#34;

您是否正在构建应用程序作为发布权?