-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revise Android minSdkVersion #107
Labels
Comments
gavv
added a commit
to gavv/roc-java
that referenced
this issue
Oct 12, 2024
Closes: roc-streaming#72, roc-streaming#112, roc-streaming#116, roc-streaming#106, roc-streaming#107, roc-streaming#105 - Update requirements: for build: JDK 17+ for running: JRE 8+ Android API 29+ (Android 10) - Bump gradle version and fix build on recent JDK versions - CI: bump actions versions cleanup test JDK 21 and JDK 17 switch to android-actions/setup-android downgrade roc-toolkit from master to v0.2.6 automatically select best roc-toolkit git tag for release AAR - README: document version requirements cleanup build & devel instructions document where versions are hard-coded - Gradle: use io.freefair.android-lombok on Android run delombok before javadoc disable javadoc warnings switch from "maven" to "maven-publish" plugin fix cmake warnings due to incorrect invocation - Sources: fix javadoc errors exclude gradle code from javadoc
gavv
added a commit
to gavv/roc-java
that referenced
this issue
Oct 12, 2024
Closes: roc-streaming#72, roc-streaming#112, roc-streaming#116, roc-streaming#106, roc-streaming#107, roc-streaming#105 - Update requirements: for build: JDK 17+ for running: JRE 8+ Android SDK: 31+ (Android 12) Android API: 29+ (Android 10) - Bump gradle version and fix build on recent JDK versions - CI: bump actions versions cleanup test JDK 21 and JDK 17 switch to android-actions/setup-android downgrade roc-toolkit from master to v0.2.6 automatically select best roc-toolkit git tag for release AAR - README: document version requirements cleanup build & devel instructions document where versions are hard-coded - Gradle: use io.freefair.android-lombok on Android run delombok before javadoc disable javadoc warnings switch from "maven" to "maven-publish" plugin fix cmake warnings due to incorrect invocation - Sources: fix javadoc errors exclude gradle code from javadoc
Merged
gavv
added a commit
to gavv/roc-java
that referenced
this issue
Oct 12, 2024
Closes: roc-streaming#72, roc-streaming#112, roc-streaming#116, roc-streaming#106, roc-streaming#107, roc-streaming#105 - Update requirements: for build: JDK 17+ for running: JRE 8+ Android SDK: 31+ (Android 12) Android API: 29+ (Android 10) - Bump gradle version and fix build on recent JDK versions - CI: bump actions versions cleanup test JDK 21 and JDK 17 switch to android-actions/setup-android downgrade roc-toolkit from master to v0.2.6 automatically select best roc-toolkit git tag for release AAR - README: document version requirements cleanup build & devel instructions document where versions are hard-coded - Gradle: use io.freefair.android-lombok on Android run delombok before javadoc disable javadoc warnings switch from "maven" to "maven-publish" plugin fix cmake warnings due to incorrect invocation - Sources: fix javadoc errors exclude gradle code from javadoc
gavv
added a commit
to gavv/roc-java
that referenced
this issue
Oct 12, 2024
Closes: roc-streaming#72, roc-streaming#112, roc-streaming#116, roc-streaming#106, roc-streaming#107, roc-streaming#105 - Update requirements: for build: JDK 17+ for running: JRE 8+ Android SDK: 31+ (Android 12) Android API: 29+ (Android 10) - Bump gradle version and fix build on recent JDK versions - CI: bump actions versions cleanup test JDK 21 and JDK 17 switch to android-actions/setup-android downgrade roc-toolkit from master to v0.2.6 automatically select best roc-toolkit git tag for release AAR - README: document version requirements cleanup build & devel instructions document where versions are hard-coded - Gradle: use io.freefair.android-lombok on Android run delombok before javadoc disable javadoc warnings switch from "maven" to "maven-publish" plugin fix cmake warnings due to incorrect invocation - Sources: fix javadoc errors exclude gradle code from javadoc
gavv
added a commit
to gavv/roc-java
that referenced
this issue
Oct 15, 2024
Closes: roc-streaming#72, roc-streaming#112, roc-streaming#116, roc-streaming#106, roc-streaming#107, roc-streaming#105 - Update requirements: for build: JDK 17+ for running: JRE 8+ Android SDK: 31+ (Android 12) Android API: 29+ (Android 10) - Bump gradle version and fix build on recent JDK versions - CI: bump actions versions cleanup test JDK 21 and JDK 17 switch to android-actions/setup-android downgrade roc-toolkit from master to v0.2.6 automatically select best roc-toolkit git tag for release AAR - README: document version requirements cleanup build & devel instructions document where versions are hard-coded - Gradle: use io.freefair.android-lombok on Android run delombok before javadoc disable javadoc warnings switch from "maven" to "maven-publish" plugin fix cmake warnings due to incorrect invocation - Sources: fix javadoc errors exclude gradle code from javadoc
gavv
added a commit
that referenced
this issue
Oct 16, 2024
Closes: #72, #112, #116, #106, #107, #105 - Update requirements: for build: JDK 17+ for running: JRE 8+ Android SDK: 31+ (Android 12) Android API: 29+ (Android 10) - Bump gradle version and fix build on recent JDK versions - CI: bump actions versions cleanup test JDK 21 and JDK 17 switch to android-actions/setup-android downgrade roc-toolkit from master to v0.2.6 automatically select best roc-toolkit git tag for release AAR - README: document version requirements cleanup build & devel instructions document where versions are hard-coded - Gradle: use io.freefair.android-lombok on Android run delombok before javadoc disable javadoc warnings switch from "maven" to "maven-publish" plugin fix cmake warnings due to incorrect invocation - Sources: fix javadoc errors exclude gradle code from javadoc
Fixed via #132, docs added to README. minSdkVersion is currently 29 (Android 10). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, Android minSdkVersion (i.e. Android API level which we support) is set to
26
:roc-java/android/roc-android/build.gradle
Line 26 in b309665
We should check whether this value can be lowered or it is indeed minimum version we can work with.
Theoretically it could be lowered because the requirement of the underlying native library (libroc) is
21
:https://github.com/roc-streaming/roc-toolkit/blob/271ddf27eb3fae0273b5f8488a3114e70f1acfdb/SConstruct#LL720C35-L720C35
Chance are that roc-java has higher requirements than 21, but probably still lower than current 26. In this case, we'll need to update it in
android/roc-android/build.gradle
,scripts/android_docker.sh
, and examples inREADME.md
.See also #105
The text was updated successfully, but these errors were encountered: