Cem
Cem

Reputation: 502

Could not find class 'com.google.android.chimera.Activity', referenced from method mu.b

When I start app and click button, I'm getting an error.I want make take photo and detect face after Automatically add on glass.

Could not find class 'com.google.android.chimera.Activity', referenced from method mu.b

Also

Could not find class 'android.graphics.drawable.RippleDrawable', referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappin‌

Here is my gradle

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:24.1.1' 
    compile 'com.google.android.gms:play-services-vision:10.2.1'
}

Upvotes: 1

Views: 1431

Answers (1)

user5772635
user5772635

Reputation:

this seem to be a proguard issue.

Try adding to your proguard-project.txt:

keep class com.google.android.chimera.** { *; }
dontwarn com.google.android.chimera.**

Upvotes: 0

Related Questions