- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我已经在 Play Store 上启动了我的应用程序,当我检查我的实时应用程序时,它与所有 Android 设备都不兼容。我检查了 Play 商店控制台。它显示了 0 个支持的设备。我不知道为什么我的应用程序不支持任何设备。
list .xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="zkm.com.zkm">
<uses-permission android:name="android.permission.INTERNET">
</uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.permission.CAMERA" />
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
<application
android:name="zkm.com.zkm.Utils.AppController"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
tools:ignore="GoogleAppIndexingWarning">
<activity
android:name="zkm.com.zkm.Activity.Splash"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="zkm.com.zkm.Activity.WelcomeActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.CarerSeekerActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden"
/>
<activity
android:name="zkm.com.zkm.Activity.SeekerAdditionalDetailActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.CareSeekerRegistrationActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.LoginActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.HelpActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.CareProviderHelpActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.CareProviderActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.ForgotPasswordActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.ConfirmPasswordActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.SearchCareProfileSeekerActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
<activity
android:name="zkm.com.zkm.Activity.SearchPackageCareProviderActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
<!-- Firebase Notifications -->
<service
android:name="zkm.com.zkm.Notification.MyFirebaseMessagingService"
android:exported="true"
android:stopWithTask="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service android:name="zkm.com.zkm.Notification.MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
<!-- ./Firebase Notifications -->
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="zkm.com.zkm.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"></meta-data>
</provider>
</application>
应用的 Gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "zkm.com.zkm"
minSdkVersion 19
targetSdkVersion 28
versionCode 2
versionName "1.0.1"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-
android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for
errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:support-vector-drawable:28.0.0'
implementation 'com.crystal:crystalrangeseekbar:1.1.3'
implementation 'com.ramotion.foldingcell:folding-cell:1.2.2'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.github.emanzanoaxa:RippleEffect:52ea2a0ab6'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.squareup.retrofit2:retrofit:2.1.0'
implementation 'com.google.code.gson:gson:2.6.2'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'de.hdodenhof:circleimageview:3.0.0'
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.stripe:stripe-android:8.7.0'
implementation 'com.hbb20:ccp:2.2.0'
repositories {
maven {
url "https://jitpack.io"
}
}
}
apply plugin: 'com.google.gms.google-services'
请检查我的 list ,让我知道我做错了什么。
最佳答案
似乎没有什么特别的错误,但我怀疑这一行:
<uses-feature android:name="android.permission.CAMERA" />
因为我觉得应该是:
<uses-permission android:name="android.permission.CAMERA" />
而且您已经包含在您的 Android list 文件中,所以只需删除这条怀疑线,看看会发生什么!
关于当应用程序在 Play 商店上线时,Android 应用程序受 0 台设备支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57585638/
我对 React 真的很陌生,需要问。 我可以有一个 ReactJs Redux store在库中,然后在也有 Redux 商店的应用程序中使用该库? 他们俩都这样做: ..A
我有两个商店版本的 Magento 安装:商店 A 和商店 B。当您转到“mydomain.com”时,我收到以下错误消息: 'There was no Home CMS page configure
我有一个按钮,单击该按钮时,将使用提供的 url 创建一个 JSONstore。然后将商店加载到网格中。如果再次单击该按钮,它会再次添加所有信息(因此会列出两次)。我想要这样,当用户单击按钮时,它会清
已结束。 这个问题是 off-topic .它目前不接受答案。 想要改进这个问题? Update the question所以它是on-topic堆栈溢出。 关闭 9 年前。 Improve this
我在 main.js 中进行 session API 调用,并将响应中的值用作我的根存储的初始值。在 vuex 中,它是这样处理的, DataService.getSession() .then(
我正尝试在 Svelte 商店中维护实时股票报价,以便屏幕上的出价和要价实时更新。我不确定商店的结构如何来保持数据的 react 性和效率。数据来自 websocket,如下所示: {'symbol'
将 Magento 商店从企业版 1.10.1.1 降级到社区版 1.7.0.0 应遵循什么程序? 我做的步骤是: 备份 Magento EE 1.10.1.1 数据库 :) 将此数据库导入到一个名为
我试图在过去 2 天使用内部应用程序共享上传我的应用程序,但无论我做什么,我都无法让它工作。这就是我所做的: 在控制台中,我点击了应用 -> 发布 -> 内部应用共享 我上传了 apk 我将自己添加到
现在的情况: 我有一个实时系统并且运行良好。 我没有测试系统。 我们的实时系统是一个多商店,在一个网站上有多个商店 View 。 问题: 我需要再添加一个 storeview 并在该 livesyst
我正在建立一个拥有零售店和批发商商店的网站。每个产品中的产品都不同,因此不仅仅是针对用户类型调整定价的问题。我需要保护批发部分的密码,以便它只对登录用户可用。我正在使用一个模块来实现这一点,但它只适用
我在应用商店上有几个应用程序,我每天都会检查所有可用的国家/地区,看看是否有人对我的应用程序留下了评论以及它在付费评级最高的位置中处于什么位置。 花时间看 iTunes 变得非常无聊。但我得到的信息非
我正在从 appsettings.json 加载配置文件,其中保存了 api url。 我已经建立了带有效果的ngrx 7商店。我在 app.component.ts onInit 中调度 loadc
我正在尝试为 Angular ngrx 存储架构中的操作编写 reducer : 这是我的 reducer : export const registration = (state: any, {ty
我创建了一个 Windows 商店应用程序,并使用 Visual Studio IDE 将其与商店相关联。在 Visual Studio IDE 中有用于创建应用程序包和上传应用程序包的菜单选项。 我
我有这个代码可以过滤我的商店 onLicenseGridSelect: function(rowmodel, record, index, eOpts) { Ext.getStore('Lic
我已将应用程序发布到 Play 商店。问题是我的应用程序的标题是 XXX YYY,但是当我输入 XXX YYY 时,搜索列表/索引中没有应用程序,但是如果我输入 XXXYYY,我可以找到我的应用程序。
我需要将所有翻译从主存储导出到另一个。 最佳答案 导出数据库中core_translate 表的内容。您可以为此使用 phpmyadmin。 关于php - 如何将内联翻译导出到另一个 Magento
我正在尝试将某些组件 (USERS) 连接到我的商店。我将向您展示每个步骤。 首先我在 index.js 中创建我的商店: // composeWithDevTools helps to follow
我不久前问过这个问题,并大致了解了商店的用途以及为什么使用它的基本解释。 但是,我目前正在为我的公司开发一个网络应用程序,并且遇到了一些计算问题。 首先,我有大约 35 个数据变量。一次只使用其中的几
我是 ngrx 的新手,我只是想了解它,让它工作起来。 我已将 ngrx(8.3 版)添加到我的应用程序中。 我希望有一些东西处于根状态(如果可能的话),然后我的每个功能都有单独的状态。我从根状态开始
我是一名优秀的程序员,十分优秀!