Problems installing Android security provider

Hi Carlo

Sorry for late reply I was on a trip yesterday. I compiled a new sample for you, without the forbidden namespace in project name but also without excluding com.android.suport dependency for Google Play Services reference because I have no idea how to do it right. This should somehow be excluded from Fire Project to make it work, as you can see from the working Android Studio project attached three posts above.

New Fire ProviderInstaller test.zip (396.9 KB)

This is what happens before ProviderInstaller.InstallIfNeeded is called:

This is what happens when the ProviderInstaller line is executed:

Please note that breakpoints sometimes work and sometimes they don’t. I guess I was lucky this time. :wink:

Any update on this?

not yet; I’ll ping my colleague again.

Thank you.

We’ve managed to reproduce the debugging problem and are looking into that. I’m not sure about the exception itself though, I have never used that api.

As I said, for ProviderInstaller.InstallIfNeeded to work it has to be possible to exclude com.android.support dependency for Google Play Services. The Android Studio project (attached to one of my previous emails) build.gradle dependencies look like this:

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation('com.google.android.gms:play-services-base:16.0.1') {
        exclude group: 'com.android.support'
    }
    implementation('com.google.android.gms:play-services-basement:16.1.0') {
        exclude group: 'com.android.support'
    }
    implementation project(':com.straightsync.android.library')
    implementation project(':cooper')
    implementation project(':swift')
}

As you can see, I’m excluding com.android.support dependency from com.google.android.gms:play-services-base and com.google.android.gms:play-services-basement. AFAIK this can’t be done in Fire so ProviderInstaller fails.

Given that I can’t compile my project in Fire I just compile the shared code into Android Library and do the rest in Android Studio. Which is too bad because I would prefer to use Fire for everything. But I’m not a paying customer at the moment so I know I can’t expect you to loose much time solving this problem. I hope you’ll be able to do it sometime. Until then, I can live with Android Studio.

Your project has

<ExcludeGradleDependency Include="com.android.support" />

you want

<ExcludeGradleDependency Include="com.android.support:whatever" />

where whatever is the name of the actual package you want excluded (eg "appcompatibility-v7` or whatever the offending package may be.

For vNext I’ve made it so that com.android.support will work and exclude com.android.support:*.

wherewhateveris the name of the actual package you want excluded (eg "appcompatibility-v7 or whatever the offending package may be.`

I’ll give it a try. Do I also have to specify a version of excluded dependency under :whatever?

no, just namespace:name

From what I could figure out from Fire’s references and hints, appcompat-v7 and support-v4 are the problem (see screenshot). Then again, maybe not, maybe I got it all wrong. Anyway, manually adding <ExcludeGradleDependency Include="com.android.support:appcompat-v7" /> and <ExcludeGradleDependency Include="com.android.support:support-v4" /> with or without version numbers or asterisks (*) didn’t change anything. I thought of adding all com.android.support libraries but there are just too many of them. I’m afraid only you guys (Marc & Co.) can figure this out. I’m back to Android Studio for app and Fire for shared libs combination. :frowning:

Let me send you a new build where the exclude for the whole namespace (ie <ExcludeGradleDependency Include="com.android.support" />) will work.

Up on Personal downloads; check https://docs.elementscompiler.com/Fire/Setup/Mac/ExternalCompiler/ for instructions on how to set up the External compiler, if needed. Make sure to do a rebuild the first time, just in case. You should see several messages Excluding Gradle dependency '{0}' from package '{1}'.

(if you don’t, the exclude isn’t working. if you do, and it still fails,. then the problem is something else altogether…)

I downloaded, installed and enabled the new external compiler. Excluding Gradle Dependency... appears in debug console, but as you can see from the screenshot some maven downloads fail.

Yeah, that seems to be an unrelated issue with the maven.google.com repository. Please seem my last reply in Android appcompat-v7, latest version? for details and a temporary workaround.

Fixed, too. I’ll send you guys a new build later today.

Thank you.

Up.

Still doesn’t compile with the new version I’m afraid. Build log:

/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono "/Users/ndelic/Downloads/Software Development/RemObjects Elements .2364/EBuild.exe" /Users/ndelic/Projects/test.provider.android/test.provider.android.sln --logger:fire --configuration:Debug --verbosity:normal --xml:/var/folders/63/jc0ykhrs5j108t389n4vrgf00000gn/T/test.provider.android.fire.xml --rebuild --setting:TreatFixableErrorsAsWarnings=True
RemObjects EBuild. An open source build engine for Elements and beyond.
Copyright RemObjects Software 2016-2019. All Rights Reserved. Created by marc hoffman.
Version 10.0.0.2364 (develop) built on bajor, 20190122-175757. Commit 010bf9b.

   Project: <RemObjects.EBuild.Elements.EBuildElementsProject: test.provider.android>
   Solution 'test.provider.android' cleaned successfully.
   Android SDK found in '/Users/ndelic/Library/Android/sdk'.
   Android Build Tools found in '/Users/ndelic/Library/Android/sdk/build-tools/28.0.3'.
   Android ApkBuilder found in '/Users/ndelic/Library/Android/sdk/tools/lib/sdklib-26.0.0-dev.jar:/Users/ndelic/Library/Android/sdk/tools/lib/sdk-common-26.0.0-dev.jar:/Users/ndelic/Library/Android/sdk/tools/lib/common-26.0.0-dev.jar'.
   No exact platform version was specified for target 'Cooper-Android', using android-28.
   Reference 'android' was resolved to '/Users/ndelic/Library/Android/sdk/platforms/android-28/android.jar' for target 'Cooper-Android'.
   Reference 'swift' was resolved to '/Users/ndelic/Downloads/Software Development/RemObjects Elements .2364/References/Cooper/swift.jar' via XML for target 'Cooper-Android'.
   Reference 'cooper' was resolved to '/Users/ndelic/Downloads/Software Development/RemObjects Elements .2364/References/Cooper/cooper.jar' via XML for target 'Cooper-Android'.
   Exlcuding Gradle dependency 'com.android.support:support-annotations' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:support-compat' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:collections' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:cursoradapter' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:support-core-utils' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:support-fragment' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:support-vector-drawable' from package 'com.android.support:appcompat-v7:*'.
   Exlcuding Gradle dependency 'com.android.support:animated-vector-drawable' from package 'com.android.support:appcompat-v7:*'.
   Adding dependency 'com.google.android.gms:play-services-tasks:16.0.1' from 'com.google.android.gms:play-services-base:16.1.0'.
   Exlcuding Gradle dependency 'com.android.support:support-v4' from package 'com.google.android.gms:play-services-basement:*'.
   Adding .aar reference appcompat-v7-28.0.0.aar.
   Adding .aar reference play-services-base-16.1.0.aar.
   Adding .aar reference play-services-basement-16.2.0.aar.
   Adding .aar reference play-services-tasks-16.0.1.aar.
   Expanding appcompat-v7-28.0.0 to /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0.
   Adding .jar reference /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/classes.jar.
   Expanding play-services-base-16.1.0 to /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/play-services-base-16.1.0.
   Adding .jar reference /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/play-services-base-16.1.0/classes.jar.
   Expanding play-services-basement-16.2.0 to /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/play-services-basement-16.2.0.
   Adding .jar reference /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/play-services-basement-16.2.0/classes.jar.
   Expanding play-services-tasks-16.0.1 to /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/play-services-tasks-16.0.1.
   Adding .jar reference /Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/play-services-tasks-16.0.1/classes.jar.
   Found Android Manifest: '/Users/ndelic/Projects/test.provider.android/Properties/AndroidManifest.android-xml'.
   Android build version is '28'.
   Android manifest file is '/Users/ndelic/Projects/test.provider.android/Properties/AndroidManifest.android-xml'.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:layout_marginEnd from <ImageView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_action_mode_close_item_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingStart from <ImageView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_action_mode_close_item_material.xml (17)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_action_mode_close_item_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:scrollIndicators from <ScrollView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_alert_dialog_button_bar_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from <android.support.v7.widget.ButtonBarLayout> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_alert_dialog_button_bar_material.xml (26)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_alert_dialog_button_bar_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:textAlignment from <android.support.v7.widget.DialogTitle> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_alert_dialog_title_material.xml (45)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:layout_marginEnd from <ImageView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_alert_dialog_title_material.xml (36)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_alert_dialog_title_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:textAlignment from <TextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_dialog_title_material.xml (29)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_dialog_title_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:textAlignment from <TextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_popup_menu_header_item_layout.xml (24)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_popup_menu_header_item_layout for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:touchscreenBlocksFocus from <android.support.v7.widget.ActionBarContainer> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_screen_toolbar.xml (27)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:layout/abc_screen_toolbar for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:layoutDirection from <LinearLayout> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_search_view.xml (47)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_search_view for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:overScrollMode from <view> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_select_dialog_material.xml (23)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:textAlignment from <view> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_select_dialog_material.xml (23)]
H: aapt: using v9 attributes; synthesizing resource test.provider.android:layout/abc_select_dialog_material for configuration v9.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingStart from <TextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_tooltip.xml (23)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from <TextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_tooltip.xml (23)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_tooltip for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingStart from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_multichoice_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_multichoice_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:drawableStart from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_multichoice_material.xml (18)]
H: aapt: using v13 attributes; synthesizing resource test.provider.android:layout/select_dialog_multichoice_material for configuration v13.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingStart from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_singlechoice_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_singlechoice_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:drawableStart from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_singlechoice_material.xml (18)]
H: aapt: using v13 attributes; synthesizing resource test.provider.android:layout/select_dialog_singlechoice_material for configuration v13.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:autoMirrored from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (24)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (24)]
H: aapt: using v19 attributes; synthesizing resource test.provider.android:drawable/abc_ic_ab_back_material for configuration v19.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:autoMirrored from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:rotation from <group> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (25)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (31)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (30)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (30)]
H: aapt: using v11 attributes; synthesizing resource test.provider.android:drawable/abc_ic_arrow_drop_right_black_24dp for configuration v11.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_clear_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_clear_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_clear_material.xml (23)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_clear_material.xml (23)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_clear_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_go_search_api_material.xml (16)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_go_search_api_material.xml (16)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_go_search_api_material.xml (22)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_go_search_api_material.xml (22)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_go_search_api_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_menu_overflow_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_menu_overflow_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_menu_overflow_material.xml (23)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_menu_overflow_material.xml (23)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_menu_overflow_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_search_api_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_search_api_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_search_api_material.xml (23)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_search_api_material.xml (23)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_search_api_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_voice_search_api_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_voice_search_api_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_voice_search_api_material.xml (23)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_voice_search_api_material.xml (23)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_voice_search_api_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:tileModeX from <bitmap> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ratingbar_indicator_material.xml (25)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ratingbar_indicator_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:tileModeX from <bitmap> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ratingbar_material.xml (25)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ratingbar_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:tileModeX from <bitmap> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ratingbar_small_material.xml (23)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ratingbar_small_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:state_activated from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_textfield_search_material.xml (19)]
H: aapt: using v11 attributes; synthesizing resource test.provider.android:drawable/abc_textfield_search_material for configuration v11.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_vector_test.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_vector_test.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_vector_test.xml (22)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_vector_test.xml (22)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_vector_test for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:state_accelerated from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_background_cache_hint_selector_material_dark.xml (18)]
H: aapt: using v11 attributes; synthesizing resource test.provider.android:color/abc_background_cache_hint_selector_material_dark for configuration v11.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:state_accelerated from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_background_cache_hint_selector_material_light.xml (18)]
H: aapt: using v11 attributes; synthesizing resource test.provider.android:color/abc_background_cache_hint_selector_material_light for configuration v11.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:alpha from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_hint_foreground_material_dark.xml (22)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:alpha from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_hint_foreground_material_dark.xml (18)]
H: aapt: using v11 attributes; synthesizing resource test.provider.android:color/abc_hint_foreground_material_dark for configuration v11.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:alpha from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_hint_foreground_material_light.xml (22)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:alpha from <item> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_hint_foreground_material_light.xml (18)]
H: aapt: using v11 attributes; synthesizing resource test.provider.android:color/abc_hint_foreground_material_light for configuration v11.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:scrollIndicators from <ScrollView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_alert_dialog_button_bar_material.xml (18)]
H: aapt: using v22 attributes; synthesizing resource test.provider.android:layout/abc_alert_dialog_button_bar_material for configuration v22.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:textAlignment from <view> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/abc_select_dialog_material.xml (23)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/abc_select_dialog_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingStart from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_multichoice_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_multichoice_material.xml (18)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/select_dialog_multichoice_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingStart from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_singlechoice_material.xml (18)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:paddingEnd from <CheckedTextView> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/layout/select_dialog_singlechoice_material.xml (18)]
H: aapt: using v17 attributes; synthesizing resource test.provider.android:layout/select_dialog_singlechoice_material for configuration v17.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (24)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_ab_back_material.xml (24)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_ab_back_material for configuration v21.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:autoMirrored from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (31)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (30)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (30)]
H: aapt: using v19 attributes; synthesizing resource test.provider.android:drawable/abc_ic_arrow_drop_right_black_24dp for configuration v19.
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportHeight from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:viewportWidth from <vector> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (17)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (31)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:fillColor from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (30)]
H: aapt: removing attribute http://schemas.android.com/apk/res/android:pathData from <path> [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml (30)]
H: aapt: using v21 attributes; synthesizing resource test.provider.android:drawable/abc_ic_arrow_drop_right_black_24dp for configuration v21.
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_btn_colored_borderless_text_material.xml (20)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_btn_colored_text_material.xml (20)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_btn_checkable.xml (19)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_default.xml (19)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_edittext.xml (19)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_seek_thumb.xml (19)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_spinner.xml (19)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_switch_track.xml (19)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_switch_track.xml (20)]
E: aapt: No resource identifier found for attribute 'alpha' in package 'test.provider.android' [/Users/ndelic/Library/Application Support/RemObjects Software/EBuild/Obj/test.provider.android-912EC7932435F093DFE589465F908BE780EBC3AF/Debug/Cooper-Android/aar/appcompat-v7-28.0.0/res/color/abc_tint_switch_track.xml (21)]
   Project 'test.provider.android' failed to build.
   Solution 'test.provider.android' failed to build all projects.

Do a clean and rebuild; the AAPT errors I believe come from old versions of Gradle packages being in the cache, and the (non-rebuild) build skipping the check for newer remote versions.

I selected Project | Clean and then Project | Rebuild multiple times, result was always the same. :frowning:

Or is there another way to clean?