-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8c7380
commit 3c8c6b1
Showing
24 changed files
with
253 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# EspTouch for Android | ||
This APP is used to configure ESP devices to connect target AP, the devices need run smart config. | ||
This APP is used to configure ESP devices to connect target AP, the devices need run [smart config](https://github.com/espressif/esp-idf/tree/master/examples/wifi/smart_config). | ||
|
||
## Licence | ||
- See [Licence](ESPRESSIF_MIT_LICENSE) | ||
|
||
## Version Log | ||
- See [Log](log) | ||
- See [Log](log/log-en.md) | ||
|
||
## Releases | ||
- See [releases](https://github.com/EspressifApp/EspRelease/tree/master/EspTouch), contain APK and Jar | ||
- For developer, if you don't want use [esptouch](esptouch) module, download the jar into your own project. | ||
- For programmer, if you don't want use [esptouch](esptouch) module, download the jar into your own project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,44 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 27 | ||
buildToolsVersion '28.0.3' | ||
compileSdkVersion 29 | ||
|
||
defaultConfig { | ||
applicationId "com.espressif.iot_esptouch_demo" | ||
minSdkVersion 14 | ||
targetSdkVersion 27 | ||
versionCode 21 | ||
versionName "v1.0.0" | ||
targetSdkVersion 29 | ||
versionCode 22 | ||
versionName "v1.1.0" | ||
} | ||
|
||
signingConfigs { | ||
debug { | ||
storeFile file('signature/espdebug') | ||
storePassword 'espdebug' | ||
keyAlias 'esp_debug' | ||
keyPassword 'espdebug' | ||
} | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | ||
} | ||
debug { | ||
signingConfig signingConfigs.debug | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility 1.8 | ||
targetCompatibility 1.8 | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
implementation 'com.android.support:appcompat-v7:27.1.1' | ||
implementation 'com.android.support:design:27.1.1' | ||
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs') | ||
implementation 'androidx.appcompat:appcompat:1.1.0' | ||
implementation 'com.google.android.material:material:1.0.0' | ||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | ||
implementation project(':esptouch') | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.