我在Android上创建了应用程序,主要目标是:用户使用他的Google帐户登录,扫描NFC标签,使用排球库将用户登录和标签的信息发送到服务器并获得响应。
当我使用Android工作室和USB调试时,一切都工作正常,一切都很好。我已将该应用程序放到谷歌游戏商店,它与我的p9 lite或任何其他NFC手机不兼容。所以我甚至无法下载应用。
这是来自Google Play的屏幕截图:
这是我的Android Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="some.package.name">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-feature android:name="android.nfc"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
</activity>
</application>
</manifest>
这也是我的gradle构建项目:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
gradle build app:
apply plugin: 'com.android.application'
android {
signingConfigs {
config {
keyAlias 'key0'
storeFile file('C:/AndroidKey/RandomKey.jks')
keyPassword 'randomKey'
storePassword 'randomPassword'
}
}
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "someId"
minSdkVersion 15
targetSdkVersion 25
versionCode 3
versionName "1.02"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
debug {
signingConfig signingConfigs.config
}
}
}
dependencies {
compile 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3'
compile 'com.android.volley:volley:1.0.0'
compile 'com.yarolegovich:lovely-dialog:1.0.5'
compile 'hanks.xyz:htextview-library:0.1.5'
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 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services-auth:9.8.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
通过USB可以很好地连接一切,但我甚至无法从Google Play商店下载应用程序。
在这种情况下我该怎么办?谢谢和问候。
编辑:
我已将<uses-feature android:name="android.nfc"/>
更改为<uses-feature android:name="android.hardware.nfc"/>
但仍然保持相同的情况:
< / p>
答案 0 :(得分:1)
正确的标签是
<uses-feature android:name="android.hardware.nfc"/>
如果您的应用也适用于没有NFC芯片的设备,则应将android:required="false"
添加到上述代码中。
答案 1 :(得分:1)
如果你的应用适用于没有nfc模块的设备,你应该改变你的uses-feature
:
<uses-feature android:name="android.hardware.nfc" android:required="false" />
如果你的应用无法使用没有nfc模块的设备,你应该使用兼容的设备和nfc,并改变你的uses-feature
:
<uses-feature android:name="android.hardware.nfc" />
答案 2 :(得分:0)
好的,所以我找到了一个解决方案,感谢大家的提示,答案不在清单中,对于令人困惑的问题感到抱歉。
Private apps in company
我不是Google Play开发者控制台的管理员,并且所有者未检查
的权利允许用户更新Google Play专用频道
所以在开发公司应用程序时,这个选项是必要的。 感谢您的帮助和问候。
编辑:此外,设备必须有工作资料才能安装该应用,现在正在使用。
答案 3 :(得分:0)
您必须将<uses-feature>
标记更新为
<uses-feature
android:name="android.hardware.nfc"
android:required="false" />
就是这样!您将上线!