edufolly / flutter_mobile_vision

Flutter implementation of Google Mobile Vision.
MIT License
455 stars 169 forks source link

Local module descriptor class for com.google.android.gms.vision.dynamite.ocr not found. #62

Open PakoApp opened 3 years ago

PakoApp commented 3 years ago

Hi,

Thank you for your work. But I try to run on physical device it gives the following errors:

W/DynamiteModule(13763): Local module descriptor class for com.google.android.gms.vision.dynamite.ocr not found. I/DynamiteModule(13763): Considering local module com.google.android.gms.vision.dynamite.ocr:0 and remote module com.google.android.gms.vision.dynamite.ocr:0 D/TextNativeHandle(13763): Cannot load feature, fall back to load dynamite module. W/DynamiteModule(13763): Local module descriptor class for com.google.android.gms.vision.ocr not found. I/DynamiteModule(13763): Considering local module com.google.android.gms.vision.ocr:0 and remote module com.google.android.gms.vision.ocr:0 E/Vision (13763): Error loading module com.google.android.gms.vision.ocr optional module true: com.google.android.gms.dynamite.DynamiteModule$LoadingException: No acceptable module found. Local version is 0 and remote version is 0. D/TextNativeHandle(13763): Broadcasting download intent for dependency ocr W/TextNativeHandle(13763): Native handle not yet available. Reverting to no-op handle. W/DynamiteModule(13763): Local module descriptor class for com.google.android.gms.vision.dynamite.ocr not found. I/DynamiteModule(13763): Considering local module com.google.android.gms.vision.dynamite.ocr:0 and remote module com.google.android.gms.vision.dynamite.ocr:0 D/TextNativeHandle(13763): Cannot load feature, fall back to load dynamite module. W/DynamiteModule(13763): Local module descriptor class for com.google.android.gms.vision.ocr not found. I/DynamiteModule(13763): Considering local module com.google.android.gms.vision.ocr:0 and remote module com.google.android.gms.vision.ocr:0 E/Vision (13763): Error loading module com.google.android.gms.vision.ocr optional module true: com.google.android.gms.dynamite.DynamiteModule$LoadingException: No acceptable module found. Local version is 0 and remote version is 0. D/Activity(13763): performCreate Call Injection manager I/InjectionManager(13763): dispatchOnViewCreated > Target : io.github.edufolly.fluttermobilevision.ocr.OcrCaptureActivity isFragment :false W/GooglePlayServicesUtil(13763): Google Play services out of date. Requires 12451000 but found 9879236 I/Timeline(13763): Timeline: Activity_idle id: android.os.BinderProxy@2d979b51 time:3419902 V/ActivityThread(13763): updateVisibility : ActivityRecord{5699b8d token=android.os.BinderProxy@2d979b51 {pacode.ocrtest/pacode.ocrtest.MainActivity}} show : true

I cleared all data of google play service and tried again it still the same.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="pacode.ocrtest">

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

<!-- io.flutter.app.FlutterApplication is an android.app.Application that
     calls FlutterMain.startInitialization(this); in its onCreate method.
     In most cases you can leave this as-is, but you if you want to provide
     additional functionality it is fine to subclass or reimplement
     FlutterApplication and put your custom class here. -->
<application
    android:name="io.flutter.app.FlutterApplication"
    android:label="ocrtest"
    android:icon="@mipmap/ic_launcher">

    <activity
        android:name=".MainActivity"
        android:launchMode="singleTop"
        android:theme="@style/LaunchTheme"
        android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
        android:hardwareAccelerated="true"
        android:windowSoftInputMode="adjustResize">

        <!-- Specifies an Android theme to apply to this Activity as soon as
             the Android process has started. This theme is visible to the user
             while the Flutter UI initializes. After that, this theme continues
             to determine the Window background behind the Flutter UI. -->
        <meta-data
          android:name="io.flutter.embedding.android.NormalTheme"
          android:resource="@style/NormalTheme"
          />
        <!-- Displays an Android View that continues showing the launch screen
             Drawable until Flutter paints its first frame, then this splash
             screen fades out. A splash screen is useful to avoid any visual
             gap between the end of Android's launch screen and the painting of
             Flutter's first frame. -->
        <meta-data
          android:name="io.flutter.embedding.android.SplashScreenDrawable"
          android:resource="@drawable/launch_background"
          />
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <activity android:name="io.github.edufolly.fluttermobilevision.ocr.OcrCaptureActivity" />

    <!-- Don't delete the meta-data below.
         This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
    <meta-data
        android:name="flutterEmbedding"
        android:value="2" />
</application>

    minSdkVersion 21

dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" }

Could you please help me?

Many Thanks in advance

PhanithNoch commented 3 years ago

I got same problem, did you solve it?