Martin Zeitler
Martin Zeitler
This is the same alike on StackOverflow, nothing but some config file, without the least code or stack-trace - which isn't reproducible. For me it probably would be easy to...
Meanwhile I've wrote [`cloudbuild-android`](https://github.com/syslogic/cloudbuild-android), which provides a similar docker container (in the own Container Registry). Since Android projects merely use the Gradle wrapper, it is based upon `openjdk` and not...
@Timtech4u I'd guess the mere problem was, that you've hosted the built container for everybody. My version does not provide any image, but only the project which builds it (no...
it builds against `materialVersion = '1.0.0-beta01'` (which might contain that style), but not against `materialVersion = '1.0.0-rc01'` (which may lack that style)... as just answered on [stackoverflow.com](https://stackoverflow.com/a/52015026/549372)... `BUILD SUCCESSFUL in...
My Gradle plugin is rather slim, but it does the job (it uploads): https://github.com/syslogic/agconnect-publishing-gradle-plugin Still can manage products & translations with my PHP API wrapper: https://github.com/syslogic/php-hms
for example: @Before public void setup() throws IOException { dir = Files.createTempDirectory("tartest").toFile(); dir.mkdirs(); } should be something alike: @Before public void setup() throws IOException { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {...
well, I can write to `/data/user/0/org.kamranzafar.jtar.test/cache` ... by `Context.getCacheDir()`.
`InstreamAdsLoader` may not be directly compatible, but eventually it could be wrapped. https://developer.android.com/media/media3/exoplayer/ad-insertion#client-using-third-party See the [`ImaAdsLoader`](https://developer.android.com/reference/androidx/media3/exoplayer/ima/ImaAdsLoader) ... implementation "androidx.media3:media3-exoplayer-ima:1.3.1" https://github.com/google/ExoPlayer/tree/release-v2/extensions/ima
When I change the condition, it also builds; where `RHEL_RELEASE_VERSION(8, 6)` means it starts failing with `8.6-1`: ```` #if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 15, 0) && \ RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(8, 6))...
I think the main difference may be the distribution channel, as I switched from CentOS Linux 8 to CentOS Stream 8; eg: dnf swap centos-linux-repos centos-stream-repos dnf distro-sync According to...