Questions tagged «android-9.0-pie»

11
java.lang.NoClassDefFoundError::Lorg / apache / http / ProtocolVersion的解析失败
当我使用Android Studio 3.1来构建Android P的应用程序时遇到了此类错误,可以制作apk,但是当我在Android P模拟器上使用它时,它将崩溃并抛出以下信息,更多详细信息请参见图片。 java.lang.NoClassDefFoundError::Lorg / apache / http / ProtocolVersion的解析失败 在App模块下我的build.gradle的一部分在下面,有人满足吗?并提出一些建议?非常感谢。 android { compileSdkVersion 'android-P' buildToolsVersion '28-rc1' useLibrary 'org.apache.http.legacy' //for Lambda compileOptions { targetCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8 } packagingOptions { exclude 'META-INF/LICENSE' exclude 'META-INF/NOTICE' } defaultConfig { applicationId "xxx.xxx.xxx" minSdkVersion 17 targetSdkVersion 27 versionCode xxxx versionName "Vx.x.x" multiDexEnabled …

8
如何在Android(9)Pie中允许所有网络连接类型HTTP和HTTPS?
从现在的Android 9 Pie开始,没有加密的请求将永远无法使用。默认情况下,系统会期望您默认使用TLS。您可以在此处阅读此功能,因此,如果仅通过HTTPS发出请求,则将是安全的。但是,通过不同站点发出请求的应用程序(例如类似浏览器的应用程序)呢? 如何在Android 9 Pie中启用对所有类型的连接HTTP和HTTPS的请求?

8
只能从同一库组调用Android P可见性awareimagebutton.setVisibility
我正在尝试使用的一部分新的Android P FloatingActionButton,com.google.android.material.floatingactionbutton.FloatingActionButton并且收到此警告: VisibilityAwareImageButton.setVisibility只能从相同的库组(groupId = com.google.android.material)中调用 import com.google.android.material.floatingactionbutton.FloatingActionButton import android.view.View class MainActivity : AppCompatActivity() { lateinit var demoFab: FloatingActionButton override fun onCreate(savedInstanceState: Bundle?) { demoFab = findViewById(R.id.demoFab) demoFab.visibility = View.VISIBLE // the warning is here } } 我尝试搜索,唯一的搜索结果是响应UI可见性更改: 响应UI可见性更改 我尝试探索如何查看VISIBLE该com.google.android.material程序包中是否有int值,而我发现的唯一值是com.google.android.material.floatingactionbutton.FloatingActionButton.VISIBLE,但警告仍然存在。 顶级build.gradle buildscript { ext.kotlin_version = '1.2.41' repositories { google() jcenter() …

17
API 28(P)的Android设计支持库不起作用
我已经成功配置了android-P SDK环境。当我尝试使用android设计支持库时,我遇到了项目构建错误。项目配置为: IDE:3.2 Canary 17目标API:28编译API:28 apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 28 defaultConfig { applicationId "com.app.navigationpoc" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(include: ['*.jar'], …

6
Android 9.0:不允许启动服务:应用程序在后台.. onResume()之后
我有一个音乐播放器,试图启动其中Service的onResume()一个Activity。为了清楚起见,我删除了几行,但是代码有效: @Override protected void onResume() { super.onResume(); startService(new Intent(this, MusicService.class)); } 根据崩溃日志,这在某些运行Android P的设备上引发异常: Caused by java.lang.IllegalStateException: Not allowed to start service Intent { cmp=another.music.player/com.simplecity.amp_library.playback.MusicService }: app is in background uid UidRecord{6a4a9c6 u0a143 TPSL bg:+3m25s199ms idle change:cached procs:1 seq(1283,1283,1283)} at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1577) at android.app.ContextImpl.startService(ContextImpl.java:1532) at android.content.ContextWrapper.startService(ContextWrapper.java:664) at android.content.ContextWrapper.startService(ContextWrapper.java:664) at com.simplecity.amp_library.utils.MusicServiceConnectionUtils.bindToService(SourceFile:36) at com.simplecity.amp_library.ui.activities.BaseActivity.bindService(SourceFile:129) …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.