An open API service indexing awesome lists of open source software.

https://github.com/hu2di/android-notes

Notes for Android: Google Admob, MoPub, StartApp, Build Wifi, ...
https://github.com/hu2di/android-notes

admob android build-tool gradle mobpub startapp wifi

Last synced: 4 months ago
JSON representation

Notes for Android: Google Admob, MoPub, StartApp, Build Wifi, ...

Awesome Lists containing this project

README

          

### android-notes
Notes for Android: Google Admob, MoPub, StartApp, Build Wifi, Compile project...

### import module
1. Open settings.gradle
2. include ':project'
3. dependencies {
compile project(':project')
}

### import .aar file
1. Copy .aar file to ../app/libs/
2. allprojects {
repositories {
jcenter()
flatDir {
dirs 'libs'
}
}
}
3. dependencies {
compile(name:'cards', ext:'aar')
}

### import .jar file
1. Copy .jar file to ../app/libs/
2. dependencies {
compile files('libs/file.jar')
}

### Build Wifi
Folder ..\Android\sdk\platform-tools

adb devices

adb tcpip 5555

adb connect 192.168.*.*:5555

adb -s 192.168.*.*:5555 usb

### Reset purchased
Open Android Studio -> Terminal

adb shell pm clear com.android.vending

### About
- Created by HuyHung Dinh
- GitHub: https://github.com/hu2di
- Email: hebitaxy@gmail.com