Skip to content

Instantly share code, notes, and snippets.

View hungvu193's full-sized avatar
Working from home

Hans hungvu193

Working from home
View GitHub Profile

Install TV application

Requirement

  • You need a laptop (or a PC) and a Mibox.
  • Make sure that your Mibox has USB Debugging (under Developer Options) turned on. (Please follow this tutorial to turn on Developer Options)
  • Make sure that your laptop (or your PC) use the same wifi with your Mibox.
  • Download the follwing apk from here

Installation

Privacy Policy

built the Matove app as a Free app. This SERVICE is provided by at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Matove unless otherwise defined in this Privacy Policy.

Environment

  • IDE: Android Studio 3.1
  • Language: Java
  • Target SDK: 23
  • Min SDK Version: 17 ( Android 4.2 )

FLOW

Connect repo

Geneated APK

From Android Studio, select Build -> Build APK. You dont need "Generate signed APK" , it 's not necessary because you wont upload this application to the Play Store. Generate APK

@hungvu193
hungvu193 / OKIPPADOCS.md
Created October 18, 2018 06:55
OKIPPA OFFICAL DOCUMENT
@hungvu193
hungvu193 / PlayStoreUpload.md
Last active October 17, 2018 06:21
Upload an Android Application to the Google Play Store

Necessary steps

  1. Remove Log method calls
  2. Digitally sign and export the app
  3. Sign up for a Publisher Account on Google Play
  4. Upload APK and enter application details

Disable Log calls

@hungvu193
hungvu193 / Bitrise.io Documents.md
Last active September 20, 2023 12:38
How to setup Bitrise.io to run a react native project

Set up a React Native app on Bitrise

Getting Started

Automating React Native apps on Bitrise? Sure thing! Let's see how! 🤖

  1. Log in to Bitrise and click +Add new app on your Dashboard!
  2. Connect your repository from your connected source code provider or add it manually. Connect repo
  3. Setup repository access (See DevCenter for detailed explanation!) Setup repo
  4. Validation setup: choose a branch for our scanner, this will help automation. How about a cuppa coffee while we are scanning your app?

Privacy Policy

built the Matove app as a Free app. This SERVICE is provided by at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Matove unless otherwise defined in this Privacy Policy.

"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force",
"clean:android": "cd android/ && ./gradlew clean && cd .. && react-native run-android",
"newclear": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean --force && npm i",
"test:watch": "jest --watch",
"updateSnapshot": "jest --updateSnapshot",
"coverage": "jest --coverage && open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html",
"android:build": "cd android && ./gradlew assembleRelease",
"android:bundle": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
#!/bin/sh
UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal
#Change "ShakeDetection" by your project name
PROJECT_NAME = "ShakeDetection"
# make sure the output directory exists
#tạo thư mục chứa thư viện sau khi build
mkdir -p "${UNIVERSAL_OUTPUTFOLDER}"
# Step 1. Build Device and Simulator versions