Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(wifi_easy_connect): plugin added #253

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/cancel_previous.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ jobs:
workflow_id: >-
all_plugins.yaml,
wifi_iot.yaml,
wifi_scan.yaml
wifi_scan.yaml,
wifi_easy_connect.yaml
all_but_latest: true
91 changes: 91 additions & 0 deletions .github/workflows/wifi_easy_connect.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# Build wifi_easy_connect example
name: wifi_easy_connect

on:
pull_request:
paths:
- "packages/wifi_easy_connect/**"
- ".github/workflows/wifi_easy_connect.yaml"

env:
PLUGIN_SCOPE: "*wifi_easy_connect*"
PLUGIN_EXAMPLE_SCOPE: "*wifi_easy_connect_example*"

jobs:
android:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Build Example"
run: ./.github/workflows/scripts/build-examples.sh android ./lib/main.dart

ios:
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Build Example"
run: ./.github/workflows/scripts/build-examples.sh ios ./lib/main.dart

# macos:
# runs-on: macos-latest
# timeout-minutes: 30
# steps:
# - name: "Checkout repository"
# uses: actions/checkout@v2
# - name: "Install Flutter"
# run: ./.github/workflows/scripts/install-flutter.sh stable
# - name: "Install Tools"
# run: ./.github/workflows/scripts/install-tools.sh
# - name: "Build Example"
# run: ./.github/workflows/scripts/build-examples.sh macos ./lib/main.dart

# linux:
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - name: "Checkout repository"
# uses: actions/checkout@v2
# - name: "Install Flutter"
# run: ./.github/workflows/scripts/install-flutter.sh stable
# - name: "Install Tools"
# run: ./.github/workflows/scripts/install-tools.sh
# - name: "Build Example"
# run: ./.github/workflows/scripts/build-examples.sh linux ./lib/main.dart

# windows:
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - name: "Checkout repository"
# uses: actions/checkout@v2
# - name: "Install Flutter"
# run: ./.github/workflows/scripts/install-flutter.sh stable
# - name: "Install Tools"
# run: ./.github/workflows/scripts/install-tools.sh
# - name: "Build Example"
# run: ./.github/workflows/scripts/build-examples.sh windows ./lib/main.dart

# web:
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - name: "Checkout repository"
# uses: actions/checkout@v2
# - name: "Install Flutter"
# run: ./.github/workflows/scripts/install-flutter.sh stable
# - name: "Install Tools"
# run: ./.github/workflows/scripts/install-tools.sh
# - name: "Build Example"
# run: ./.github/workflows/scripts/build-examples.sh web ./lib/main.dart
29 changes: 29 additions & 0 deletions packages/wifi_easy_connect/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.packages
build/
10 changes: 10 additions & 0 deletions packages/wifi_easy_connect/.metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: c860cba910319332564e1e9d470a17074c1f2dfd
channel: stable

project_type: plugin
3 changes: 3 additions & 0 deletions packages/wifi_easy_connect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 0.0.1

* TODO: Describe initial release.
1 change: 1 addition & 0 deletions packages/wifi_easy_connect/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TODO: Add your license here.
15 changes: 15 additions & 0 deletions packages/wifi_easy_connect/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# wifi_easy_connect

Flutter plugin to easily provision WiFi credentials to a peer device.

## Getting Started

This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.

For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

8 changes: 8 additions & 0 deletions packages/wifi_easy_connect/android/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
50 changes: 50 additions & 0 deletions packages/wifi_easy_connect/android/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
group 'dev.flutternetwork.wifi.wifi_easy_connect'
version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 31

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

defaultConfig {
minSdkVersion 16
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
1 change: 1 addition & 0 deletions packages/wifi_easy_connect/android/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'wifi_easy_connect'
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.flutternetwork.wifi.wifi_easy_connect">
</manifest>
Loading