Skip to content

Commit 6ee36b1

Browse files
version 1.0.0
0 parents  commit 6ee36b1

File tree

161 files changed

+10073
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+10073
-0
lines changed

.github/workflows/on-push.yml

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
name: Handle Push
2+
on:
3+
push:
4+
branches:
5+
- '**' # respond to a push to any branch
6+
tags:
7+
- '[0-9]+.[0-9]+.[0-9]+' # respond to any release tags with semantic versioning
8+
9+
env:
10+
GRADLE_CACHE_PATH: |
11+
~/.gradle/caches
12+
~/.gradle/wrapper
13+
14+
jobs:
15+
# Run the tests on any branch or tag push
16+
run-tests:
17+
strategy:
18+
matrix:
19+
include:
20+
- project: Library
21+
gradle-arguments: testReleaseUnitTest
22+
base-folder: Armadillo
23+
test-report-folder: testReleaseUnitTest
24+
- project: Test App
25+
gradle-arguments: :TestApp:testArmlocalReleaseUnitTest
26+
base-folder: TestApp
27+
test-report-folder: testArmlocalReleaseUnitTest
28+
29+
name: Run ${{ matrix.project }} Tests
30+
runs-on: ubuntu-latest
31+
steps:
32+
# Clone the repo
33+
- name: Clone Repo
34+
uses: actions/checkout@v2
35+
36+
# Cache the gradle build dependencies for faster builds
37+
- name: Cache Gradle Dependencies
38+
uses: actions/cache@v2
39+
with:
40+
path: ${{ env.GRADLE_CACHE_PATH }}
41+
key: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/gradle.properties') }}
42+
restore-keys: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle-
43+
44+
# Test using gradle
45+
- name: Run ${{ matrix.project }} Tests
46+
run: ./gradlew ${{ matrix.gradle-arguments }} --warning-mode all
47+
48+
# Upload the html test report as a build artifact for easier debugging
49+
- name: Upload Test Report
50+
if: ${{ always() }}
51+
uses: actions/upload-artifact@v2
52+
with:
53+
name: ${{ matrix.test-group }} Test Reports
54+
path: ${{ matrix.base-folder }}/build/reports/tests/${{ matrix.test-report-folder }}/*
55+
56+
# Upload XML logs as build artifacts (accessible from the Summary page of the run)
57+
- name: Upload JUnit Logs
58+
if: ${{ always() }}
59+
uses: actions/upload-artifact@v2
60+
with:
61+
name: ${{ matrix.test-group }} Testing Logs
62+
path: "${{ matrix.base-folder }}/build/test-results/test*UnitTest/TEST-*.xml"
63+
64+
# If the workflow was started on the main branch then publish the library and test app. If started on a release branch publish only the library.
65+
publish-artifact-to-github-packages-or-s3:
66+
name: Publish ${{ matrix.project }} Release
67+
runs-on: ubuntu-latest
68+
needs: run-tests
69+
strategy:
70+
matrix:
71+
include:
72+
- project: Library
73+
gradle-arguments: :Armadillo:assembleRelease
74+
artifact-name: Armadillo.aar
75+
artifact-path: Armadillo/build/outputs/aar/Armadillo-release.aar
76+
retention-days: 400
77+
- project: Test App
78+
gradle-arguments: :TestApp:assembleArmLocalRelease
79+
artifact-name: TestApp.apk
80+
artifact-path: TestApp/build/outputs/apk/armlocal/release/TestApp-armlocal-release.apk
81+
retention-days: 7
82+
steps:
83+
# Retrieve the repo
84+
- name: Clone Repo
85+
uses: actions/checkout@v2
86+
87+
# Cache the gradle build dependencies for faster builds
88+
- name: Cache Gradle Dependencies
89+
uses: actions/cache@v2
90+
with:
91+
path: ${{ env.GRADLE_CACHE_PATH }}
92+
key: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/gradle.properties') }}
93+
restore-keys: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle-
94+
95+
# Build using gradle
96+
- name: Build ${{ matrix.project }} Release
97+
run: ./gradlew ${{ matrix.gradle-arguments }}
98+
99+
# Push the Library to Github packages
100+
- name: Publish Release
101+
if: matrix.project == 'Library' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
102+
env:
103+
GITHUB_USERNAME: ${{ github.actor }}
104+
GITHUB_PASSWORD: ${{ github.token }}
105+
run: |
106+
./gradlew publishReleaseAarPublicationToGitHubPackagesRepository
107+
108+
# Upload the AAR file as a build artifact (accessible from the Summary page of the run)
109+
- name: Upload AAR file
110+
uses: actions/upload-artifact@v2
111+
with:
112+
name: ${{ matrix.artifact-name }}
113+
path: ${{ matrix.artifact-path }}
114+
retention-days: ${{ matrix.retention-days }}

.gitignore

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
proguard/
15+
R.java
16+
17+
# Local configuration file (sdk path, etc)
18+
local.properties
19+
20+
# vi swap files
21+
*.swp
22+
23+
# emacs
24+
*~
25+
26+
# android studio / intellij stuff
27+
.idea/
28+
*/build/*
29+
/build
30+
.gradle/
31+
*.iml
32+
33+
# osx stuff
34+
.DS_Store
35+
36+
.metadata
37+
38+
# Crashlytics
39+
Scribd/res/values/com_crashlytics_export_strings.xml
40+
41+
# Build metadata (generated during compile then deleted, but can get left in place sometimes)
42+
Scribd/src/com/scribd/app/build/BuildMetadata.java
43+
44+
# Generated as a side effect of 'android update project' in build scripts, but not used by the IDE
45+
project.properties
46+
proguard-project.txt
47+
build.xml
48+
49+
# layout inspector
50+
/captures
51+
52+
# VS code
53+
.vscode
54+
**/.project
55+
**/.settings

.gradle-cache-buster

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
###########################################################
2+
# UPDATE THIS FILE TO BREAK GITHUB ACTIONS GRADLE CACHE #
3+
# #
4+
# RUN `uuidgen` TO GENERATE A NEW TOKEN #
5+
###########################################################
6+
7+
D7587EC9-3AAE-4F5A-998B-D821648DC678

Armadillo/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

Armadillo/.keystore

116 KB
Binary file not shown.

Armadillo/build.gradle

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
buildscript {
2+
apply from: "$project.rootDir/gradle/shared.gradle"
3+
4+
dependencies {
5+
classpath "digital.wup:android-maven-publish:${MAVEN_PUBLISH_VERSION}"
6+
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${DOKKA_VERSION}"
7+
}
8+
}
9+
10+
plugins {
11+
id 'com.android.library'
12+
id 'kotlin-android'
13+
id 'kotlin-kapt'
14+
// Extension of maven plugin that properly handles android dependencies
15+
id 'digital.wup.android-maven-publish' version "${MAVEN_PUBLISH_VERSION}"
16+
id 'org.jetbrains.dokka' version "${DOKKA_VERSION}" // Official Kotlin documentation engine - does both Kotlin and Java docs
17+
}
18+
19+
android {
20+
compileSdkVersion 30
21+
22+
compileOptions {
23+
sourceCompatibility JavaVersion.VERSION_1_8
24+
targetCompatibility JavaVersion.VERSION_1_8
25+
}
26+
27+
defaultConfig {
28+
minSdkVersion 21
29+
targetSdkVersion 30
30+
versionCode 1
31+
versionName project.LIBRARY_VERSION
32+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
33+
consumerProguardFiles 'proguard-rules.pro'
34+
}
35+
36+
buildTypes {
37+
release {
38+
minifyEnabled false
39+
}
40+
debug {
41+
}
42+
}
43+
44+
resourcePrefix 'arm'
45+
}
46+
47+
dependencies {
48+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
49+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1'
50+
51+
implementation "com.google.android.exoplayer:exoplayer-core:${EXOPLAYER_VERSION}"
52+
implementation "com.google.android.exoplayer:exoplayer-hls:${EXOPLAYER_VERSION}"
53+
implementation "com.google.android.exoplayer:extension-mediasession:${EXOPLAYER_VERSION}"
54+
55+
implementation "io.reactivex.rxjava2:rxjava:${RXJAVA_VERSION}"
56+
implementation "io.reactivex.rxjava2:rxandroid:${RXANDROID_VERSION}"
57+
implementation "com.google.dagger:dagger:${DAGGER_VERSION}"
58+
kapt "com.google.dagger:dagger-compiler:${DAGGER_VERSION}"
59+
implementation 'androidx.media:media:1.0.0'
60+
testImplementation "org.robolectric:robolectric:4.5.1"
61+
testImplementation 'junit:junit:4.12'
62+
testImplementation("org.assertj:assertj-core:3.10.0")
63+
testImplementation "org.mockito:mockito-core:2.28.2"
64+
testImplementation("com.nhaarman:mockito-kotlin:1.6.0") {
65+
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
66+
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-reflect'
67+
}
68+
}
69+
70+
task androidSourcesJar(type: Jar) {
71+
from android.sourceSets.main.java.srcDirs
72+
archiveClassifier.set('sources')
73+
}
74+
75+
// Let dokka do the javadoc creation, then pick up its output as our artifact
76+
task androidJavadocsJar(type: Jar, dependsOn: dokkaJavadoc) {
77+
archiveClassifier.set('javadoc')
78+
from dokkaJavadoc.outputDirectory
79+
}
80+
81+
// Configure AAR to publish
82+
publishing {
83+
84+
publications {
85+
android.libraryVariants.all { variant ->
86+
"${variant.name.capitalize()}Aar"(MavenPublication) {
87+
groupId project.PACKAGE_NAME
88+
version project.LIBRARY_VERSION
89+
artifactId project.getName().toLowerCase()
90+
from components.findByName("android${variant.name.capitalize()}")
91+
// Add sources to artifact
92+
artifact androidSourcesJar
93+
// Add javadocs
94+
artifact androidJavadocsJar
95+
}
96+
}
97+
}
98+
99+
repositories {
100+
maven {
101+
name = "GitHubPackages"
102+
url = uri("https://maven.pkg.github.com/scribd/armadillo")
103+
credentials {
104+
username = "$githubUsername"
105+
password = "$githubPassword"
106+
}
107+
}
108+
}
109+
}

Armadillo/proguard-rules.pro

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
22+
23+
# Guava warnings
24+
# https://stackoverflow.com/questions/9120338/proguard-configuration-for-guava-with-obfuscation-and-optimization
25+
-dontwarn sun.misc.Unsafe
26+
-dontwarn afu.org.checkerframework.**
27+
-dontwarn org.checkerframework.**
28+
-dontwarn com.google.errorprone.**
29+
-dontwarn sun.misc.Unsafe
30+
-dontwarn java.lang.ClassValue
31+
-dontwarn com.google.common.**
32+
33+
# Coroutine Flow
34+
-dontwarn kotlinx.coroutines.debug.**
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<manifest
2+
xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="com.scribd.armadillo">
5+
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
8+
9+
<application>
10+
11+
<service
12+
android:name=".playback.PlaybackService"
13+
android:exported="true"
14+
android:stopWithTask="false"
15+
tools:ignore="ExportedService">
16+
17+
<intent-filter>
18+
<action android:name="android.media.browse.MediaBrowserService"/>
19+
</intent-filter>
20+
</service>
21+
22+
<!-- allows exoplayer to tolerate loss of internet -->
23+
<service
24+
android:name="com.google.android.exoplayer2.scheduler.PlatformScheduler$PlatformSchedulerService"
25+
android:exported="true"
26+
android:permission="android.permission.BIND_JOB_SERVICE"/>
27+
28+
</application>
29+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.scribd.armadillo
2+
3+
import com.scribd.armadillo.models.AudioPlayable
4+
import com.scribd.armadillo.time.milliseconds
5+
6+
/**
7+
* Used to specify various settings when starting playback on a new [AudioPlayable]
8+
*
9+
* @property initialOffset The initial position to begin playback from.
10+
* @property isAutoPlay Flag to begin playback as soon as the content is loaded.
11+
* @property maxDurationDiscrepancy Armadillo will output errors if the metadata for the audio duration doesn't match the
12+
* actual duration of playback. This value can be used to set the allowed maximum difference in seconds between stated vs. actual duration.
13+
* Can also be set to a negative value to ignore any discrepancies.
14+
*/
15+
data class ArmadilloConfiguration(val initialOffset: Milliseconds = 0.milliseconds,
16+
val isAutoPlay: Boolean = true,
17+
val maxDurationDiscrepancy: Int = MAX_DISCREPANCY_DEFAULT) {
18+
19+
companion object {
20+
// Default duration discrepancy values in seconds
21+
const val MAX_DISCREPANCY_DEFAULT = 1
22+
const val MAX_DISCREPANCY_DISABLE = -1
23+
}
24+
25+
}

0 commit comments

Comments
 (0)