Open deakjahn opened 2 weeks ago
The interface referenced seems to be in huawei_ads-13.4.72+300\android\src\main\aidl\com\huawei\android\hms\ppskit\IPPSChannelInfoService.aidl
so it might be some toolchain error.
Also, removing PpsChannelInfoService.java
completely makes the app buildable. I don't know the ramifications.
@deakjahn I had same problem yesterday. The your last message prompted me to look at the source. After investigation =), i added a code to project gradle file in my app:
allprojects {
subprojects {
afterEvaluate { project ->
if (project.group == 'com.huawei.hms.flutter.ads') {
project.android {
buildFeatures {
aidl true
}
}
}
}
}
}
It enables aidl in huawei_ads package and helped me
Description
When building an app with
huawei_ads
the following error occurs:(plus a few others for the same issue).
Expected behavior
Build without error. Remove reference if obsolete.
Environment