-
-
Notifications
You must be signed in to change notification settings - Fork 489
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add (empty) playback module and CODEOWNERS (#1072)
* Add (empty) playback module * Add CODEOWNERS file
- Loading branch information
1 parent
4e9a239
commit 6f3943c
Showing
6 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Build files | ||
/.github/workflows/ @nielsvanvelzen | ||
/.github/dependabot.yml @nielsvanvelzen | ||
/gradle/ @nielsvanvelzen | ||
/buildSrc/ @nielsvanvelzen | ||
settings.gradle.ts @nielsvanvelzen | ||
build.gradle.kts @nielsvanvelzen | ||
gradle.properties @nielsvanvelzen | ||
|
||
# Linting | ||
android-lint.xml @nielsvanvelzen | ||
detekt.yaml @nielsvanvelzen | ||
|
||
# Playback code | ||
/playback/ @nielsvanvelzen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
plugins { | ||
id("com.android.library") | ||
kotlin("android") | ||
} | ||
|
||
android { | ||
compileSdkVersion(30) | ||
|
||
defaultConfig { | ||
minSdkVersion(21) | ||
targetSdkVersion(30) | ||
} | ||
|
||
buildFeatures { | ||
viewBinding = true | ||
} | ||
|
||
sourceSets["main"].java.srcDirs("src/main/kotlin") | ||
sourceSets["test"].java.srcDirs("src/test/kotlin") | ||
} | ||
|
||
dependencies { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.jellyfin.playback"> | ||
|
||
<application> | ||
|
||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ enableFeaturePreview("VERSION_CATALOGS") | |
|
||
// Application | ||
include(":app") | ||
|
||
// Modules | ||
include(":playback") |