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, ...
- Host: GitHub
- URL: https://github.com/hu2di/android-notes
- Owner: hu2di
- Created: 2017-03-11T02:33:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-04T11:58:33.000Z (over 5 years ago)
- Last Synced: 2024-05-31T16:59:25.348Z (over 1 year ago)
- Topics: admob, android, build-tool, gradle, mobpub, startapp, wifi
- Language: Java
- Homepage:
- Size: 583 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-toolsadb devices
adb tcpip 5555
adb connect 192.168.*.*:5555adb -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