This is an example implementation of the kickflip-android-sdk that illustrates easy live, high definition HLS broadcasts. Also check out our slick iOS example project!
- High Definition HTTP Live Streaming
- Background recording
- OpenGL Video Effects
-
Run
path/to/android-sdk/tools/android
to install the following packages:- Android SDK Tools 22.6.3
- Android SDK Platform-tools 19.0.2
- Android SDK Build-tools 19.1
- Android 4.4.2 SDK Platform 3
- Android Support Repository 5
- Android Support Library 19.1
-
Define the Android SDK root directory as
$ANDROID_HOME
in your environment.# ~/.bash_profile # e.g If you're using Android Studio on Mac OS X: export ANDROID_HOME=/Applications/Android\ Studio.app/sdk/
ProTip: You should have the Android SDK root, along with the /tools
and /platform-tools
sub-directories added to your PATH.
After you sign up for a Kickflip account, copy your API keys to ./app/src/main/java/io/kickflip/sample/SECRETS.java
:
$ touch ./app/src/main/java/io/kickflip/sample/SECRETS.java
package io.kickflip.sample;
public class SECRETS {
public static final String CLIENT_KEY = "YourKickflipKey";
public static final String CLIENT_SECRET = "YourKickflipSecret";
}
-
From this directory run:
$ ./gradlew assembleDebug
-
The Kickflip Example .apk will be in
./app/build/apk
. Install it!$ adb install ./app/build/apk/app-debug-unaligned.apk
-
Select
Import Project
and point Android Studio to the root project directory. -
Hit the
Play
Icon orcontrol + R
to build and run on your attached Android device.
Apache 2.0
Copyright 2014 OpenWatch, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.