草庐IT

android - 迁移到 AndroidX 后,启动时出现异常 : java. lang.ClassNotFoundException : "Didn' t find class androidx. core.app.CoreComponentFactory"

coder 2023-12-05 原文

迁移到 AndroidX 后,我在启动时遇到以下异常:

LoadedApk: Unable to instantiate appComponentFactory
    java.lang.ClassNotFoundException: Didn't find class               "androidx.core.app.CoreComponentFactory" on path: DexPathList[[],nativeLibraryDirectories=[/data/app/com.apps.entertainmentsolutions.offhole-yUKw5A4ysDVrPyO-DpnhKg==/lib/arm64, /system/lib64, /system/vendor/lib64]]
        at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:134)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:379)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
        at android.app.LoadedApk.createAppFactory(LoadedApk.java:217)
        at android.app.LoadedApk.updateApplicationInfo(LoadedApk.java:329)
        at android.app.ActivityThread.handleDispatchPackageBroadcast(ActivityThread.java:5410)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1743)
        at android.os.Handler.dispatchMessage(Handler.java:106)
        at android.os.Looper.loop(Looper.java:193)
        at com.android.server.SystemServer.run(SystemServer.java:460)
        at com.android.server.SystemServer.main(SystemServer.java:300)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:838)

我在 Windows 10 中使用 Android Studio 3.4.1。

我尝试了我能找到的所有解决方案,但问题仍然存在:

Android design support library for API 28 (P) not working

AndroidX Build Fails in Release Mode regarding appComponentFactory

我添加了 -keep class androidx.core.app.CoreComponentFactory { *; } 对于 proguard-rules.pro,我将 android.useAndroidX=true 和 android.enableJetifier=true 添加到 gradle.properties...清理、重建、使 chaches 无效并重新启动...

也禁用即时运行...

另一个奇怪的事实是,我可以毫无问题地从其他类导入该类(import androidx.core.app.CoreComponentFactory;)。

我的 gradle 文件。项目等级:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

    buildscript {

        repositories {
            jcenter()
            maven {
                url 'https://maven.fabric.io/public'
            }
            google()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.4.1'
            classpath 'com.google.gms:google-services:4.2.0'
            classpath 'io.fabric.tools:gradle:1.28.0'
        }
    }

    allprojects {
        repositories {
            maven {
                url "https://maven.google.com" // Google's Maven repository
            }
            jcenter()
            google()
        }
    }

    task clean(type: Delete) {
        delete rootProject.buildDir
    }

应用程序等级:

apply plugin: 'com.android.application'
    apply plugin: 'io.fabric'

    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "co.offtime.kit"

            minSdkVersion 24
            targetSdkVersion 28
            versionCode 1
            versionName "4.0"
            testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
            vectorDrawables.useSupportLibrary = true
        }
        buildTypes {
            beta {
                versionNameSuffix ".beta"
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                zipAlignEnabled true
                signingConfig signingConfigs.debug
            }
            debug {
                versionNameSuffix ".debug"
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                zipAlignEnabled true
                signingConfig signingConfigs.debug
            }
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt' ), 'proguard-rules.pro'
                signingConfig signingConfigs.debug
            }
        }
        productFlavors {
            //main application
            kit {
                applicationId "co.offtime.kit"
                dimension "release"
                versionName "v.kit.4.0"
                versionCode 236
            }
        }

        packagingOptions {
            exclude 'META-INF/DEPENDENCIES'
            exclude 'META-INF/LICENSE'
            exclude 'META-INF/LICENSE.txt'
            exclude 'META-INF/license.txt'
            exclude 'META-INF/NOTICE'
            exclude 'META-INF/NOTICE.txt'
            exclude 'META-INF/notice.txt'
            exclude 'META-INF/ASL2.0'
        }
    }

    def AAVersion = '4.6.0'
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])

        implementation 'androidx.appcompat:appcompat:1.0.2'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
        implementation 'com.google.android.material:material:1.0.0'
        implementation 'androidx.vectordrawable:vectordrawable:1.0.0'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'androidx.test:runner:1.1.1'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'

        annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
        implementation "org.androidannotations:androidannotations-api:$AAVersion"

        implementation 'org.springframework.android:spring-android-rest-template:2.0.0.M3'

        implementation 'com.fasterxml.jackson.core:jackson-core:2.4.1'
        implementation 'com.fasterxml.jackson.core:jackson-annotations:2.4.1'
        implementation 'com.fasterxml.jackson.core:jackson-databind:2.4.1'

        implementation 'com.google.firebase:firebase-core:16.0.9'
        implementation 'com.google.firebase:firebase-messaging:18.0.0'

        implementation 'com.google.firebase:firebase-core:16.0.9'
        implementation 'com.crashlytics.sdk.android:crashlytics:2.10.0'

        implementation 'com.google.android.gms:play-services-gcm:16.1.0'

        repositories {
            maven {
                url 'https://repo.spring.io/libs-milestone'
            }
        }
    }

    apply plugin: 'com.google.gms.google-services'

渐变属性:

org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
android.enableJetifier=true

混淆器:

 -keep class androidx.core.app.CoreComponentFactory { *; }

list :

<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" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />

<uses-permission android:name="android.permission.VIBRATE" />

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
<uses-permission android:name="android.permission.CALL_PHONE" />

<uses-permission android:name="android.permission.CAMERA" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-permission android:name="android.permission.REORDER_TASKS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.REQUEST_COMPANION_USE_DATA_IN_BACKGROUND" />

<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />

<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY" />

<application
    android:name="co.offtime.kit.core.AppGlobals_"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity
        android:name="co.offtime.kit.SplashScreen_"
        android:label="@string/app_name"
        android:theme="@style/Theme.AppCompat.Light.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

        <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:host="www.offtime.app"
                android:scheme="http" />
        </intent-filter>
    </activity>

    <activity
        android:name=".ParentActivity_"
        android:label="parentActivity" />

    <activity
        android:name="co.offtime.kit.InitialDataLoadActivity_"
        android:parentActivityName=".ParentActivity_" />

    <activity
        android:name="co.offtime.kit.LoginActivity_"
        android:configChanges="orientation|screenSize"
        android:label="@string/login_title"
        android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
    <activity
        android:name="co.offtime.kit.NewUserFormActivity_"
        android:configChanges="orientation|screenSize"
        android:label="@string/new_user_form_title"
        android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
    <activity
        android:name="co.offtime.kit.TestButtonsActivity_"
        android:label="@string/app_name"
        android:parentActivityName="co.offtime.kit.DisableHardwareButtonsActivity_">          
    </activity>
    <activity
        android:name="co.offtime.kit.DisableHardwareButtonsActivity_"
        android:label="disableHardwareButtonsActivity" />
    <activity
        android:name="co.offtime.kit.EventListActivity_"
        android:label="@string/event_list_title" />
    <activity
        android:name="co.offtime.kit.EventDetailFormActivity_"
        android:label="@string/new_event_title" />

    <!-- ACTIVITIES -->

    <activity
        android:name="co.offtime.kit.BlockActivity_"
        android:configChanges="orientation|screenSize"
        android:launchMode="singleTask"
        android:parentActivityName="co.offtime.kit.DisableHardwareButtonsActivity_"
        android:screenOrientation="portrait" />

    <service            android:name="co.offtime.kit.core.services.ClosingAppWatcherService_"
        android:stopWithTask="false" />

    <receiver            android:name="co.offtime.kit.core.AvoidCameraUseDeviceAdminReceiver"
        android:permission="android.permission.BIND_DEVICE_ADMIN">
        <meta-data
            android:name="android.app.device_admin"
            android:resource="@xml/device_policies" />

        <meta-data android:name="com.google.firebase.messaging.default_notification_icon"
            android:resource="@drawable/ic_notifications_white_24dp" />

        <intent-filter>
            <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
            <action android:name="android.app.action.DEVICE_ADMIN_DISABLE_REQUESTED" />
            <action android:name="android.app.action.DEVICE_ADMIN_DISABLED" />
        </intent-filter>
    </receiver>

    <receiver android:name="co.offtime.kit.core.broadcastreceiver.CallBlockerReceiver_">
        <intent-filter android:priority="9999">
            <action android:name="android.intent.action.PHONE_STATE" />
            <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
        </intent-filter>
    </receiver>

    <receiver
        android:name="co.offtime.kit.core.broadcastreceiver.BootCompleteDeviceBroadcastReceiver_"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.QUICKBOOT_POWERON" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

    <service
        android:name="co.offtime.kit.core.services.LaunchBlockJobService"
        android:label="LaunchBlockJobService"
        android:permission="android.permission.BIND_JOB_SERVICE" />

    <service            android:name="co.offtime.kit.core.services.EventExecutorService_"
        android:enabled="true"
        android:exported="true"
        android:stopWithTask="false" />

    <service android:name="co.offtime.kit.core.fcmpushnotifications.MyFirebaseMessagingService">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT" />
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
        </intent-filter>
    </service>

    <service            android:name="co.offtime.kit.core.fcmpushnotifications.FcmTokenUpdateService_"
        android:enabled="true"
        android:exported="true"
        android:stopWithTask="false" />
</application>

目前这不会导致 ANR,应用程序启动并正常运行,但我担心将来会出现问题,我想知道为什么会这样。

有人遇到过这个问题吗?它是如何解决的?

最佳答案

看起来 CoreComponentFactory 类正在加密。尝试将上述类添加到 proguard-rules 中。

 -keep class androidx.core.app.CoreComponentFactory { *; }

因此 CoreComponentFactory 将不再被加密。

关于android - 迁移到 AndroidX 后,启动时出现异常 : java. lang.ClassNotFoundException : "Didn' t find class androidx. core.app.CoreComponentFactory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56252142/

有关android - 迁移到 AndroidX 后,启动时出现异常 : java. lang.ClassNotFoundException : "Didn' t find class androidx. core.app.CoreComponentFactory"的更多相关文章

  1. ruby-on-rails - rails : "missing partial" when calling 'render' in RSpec test - 2

    我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou

  2. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  3. ruby - ECONNRESET (Whois::ConnectionError) - 尝试在 Ruby 中查询 Whois 时出错 - 2

    我正在用Ruby编写一个简单的程序来检查域列表是否被占用。基本上它循环遍历列表,并使用以下函数进行检查。require'rubygems'require'whois'defcheck_domain(domain)c=Whois::Client.newc.query("google.com").available?end程序不断出错(即使我在google.com中进行硬编码),并打印以下消息。鉴于该程序非常简单,我已经没有什么想法了-有什么建议吗?/Library/Ruby/Gems/1.8/gems/whois-2.0.2/lib/whois/server/adapters/base.

  4. ruby - 在 64 位 Snow Leopard 上使用 rvm、postgres 9.0、ruby 1.9.2-p136 安装 pg gem 时出现问题 - 2

    我想为Heroku构建一个Rails3应用程序。他们使用Postgres作为他们的数据库,所以我通过MacPorts安装了postgres9.0。现在我需要一个postgresgem并且共识是出于性能原因你想要pggem。但是我对我得到的错误感到非常困惑当我尝试在rvm下通过geminstall安装pg时。我已经非常明确地指定了所有postgres目录的位置可以找到但仍然无法完成安装:$envARCHFLAGS='-archx86_64'geminstallpg--\--with-pg-config=/opt/local/var/db/postgresql90/defaultdb/po

  5. ruby - 检查 "command"的输出应该包含 NilClass 的意外崩溃 - 2

    为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar

  6. ruby - 如何使用 RSpec::Core::RakeTask 创建 RSpec Rake 任务? - 2

    如何使用RSpec::Core::RakeTask初始化RSpecRake任务?require'rspec/core/rake_task'RSpec::Core::RakeTask.newdo|t|#whatdoIputinhere?endInitialize函数记录在http://rubydoc.info/github/rspec/rspec-core/RSpec/Core/RakeTask#initialize-instance_method没有很好的记录;它只是说:-(RakeTask)initialize(*args,&task_block)AnewinstanceofRake

  7. java - 等价于 Java 中的 Ruby Hash - 2

    我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/

  8. ruby-on-rails - 迷你测试错误 : "NameError: uninitialized constant" - 2

    我遵循MichaelHartl的“RubyonRails教程:学习Web开发”,并创建了检查用户名和电子邮件长度有效性的测试(名称最多50个字符,电子邮件最多255个字符)。test/helpers/application_helper_test.rb的内容是:require'test_helper'classApplicationHelperTest在运行bundleexecraketest时,所有测试都通过了,但我看到以下消息在最后被标记为错误:ERROR["test_full_title_helper",ApplicationHelperTest,1.820016791]test

  9. ruby-on-rails - 相关表上的范围为 "WHERE ... LIKE" - 2

    我正在尝试从Postgresql表(table1)中获取数据,该表由另一个相关表(property)的字段(table2)过滤。在纯SQL中,我会这样编写查询:SELECT*FROMtable1JOINtable2USING(table2_id)WHEREtable2.propertyLIKE'query%'这工作正常:scope:my_scope,->(query){includes(:table2).where("table2.property":query)}但我真正需要的是使用LIKE运算符进行过滤,而不是严格相等。然而,这是行不通的:scope:my_scope,->(que

  10. 使用 ACL 调用 upload_file 时出现 Ruby S3 "Access Denied"错误 - 2

    我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file

随机推荐