Skip to content

Commit

Permalink
Oboe!
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Dec 30, 2021
1 parent a3d3ce0 commit f34fcce
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,23 @@ class Guacamole : ThirdPartyExtension() {
}
}

/**
* Access the Oboe libraries for audio in Android 16+.
* @author barsoosayque
*/
@Extension
class LibgdxOboe : ThirdPartyExtension() {
override val id = "libgdxOboe"
override val defaultVersion = "0.3.0.2"
override val url = "https://github.com/tommyettinger/libgdxoboe"
override val group = "com.github.tommyettinger"
override val name = "libgdxoboe"

override fun initiateDependencies(project: Project) {
addDependency(project, Android.ID, "com.github.tommyettinger:libgdxoboe")
}
}

/**
* Support for the Basis Universal supercompressed texture format.
* This form of texture compression works best for extremely large 3D textures, and works
Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/i18n/nls.properties
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ gdxBasisUniversal=GDX Basis Universal
lombok=Lombok
imgui=Imgui
kotlinxCoroutines=Kotlin Coroutines
libgdxOboe=libGDX-Oboe

issues=https://github.com/tommyettinger/gdx-liftoff/issues
ok=OK
Expand Down Expand Up @@ -327,6 +328,7 @@ gdxBasisUniversalTip=Basis Universal supercompressed texture format support.
imguiTip=An immediate-mode GUI library (LWJGL3-only!); written in Kotlin and compatible with Java as well.
lombokTip=Lombok support for Java projects.
kotlinxCoroutinesTip=The official Kotlin coroutines library.
libgdxOboeTip=Access the Oboe libraries for audio in Android 16+.

templates=Templates
templatesPrompt=Templates generate basic sources of your project to quickly get you started.
Expand Down

0 comments on commit f34fcce

Please sign in to comment.