Skip to content

Commit 07ff98d

Browse files
author
Aleksey
committed
Ready
0 parents  commit 07ff98d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3280
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
.atom/
3+
.idea
4+
.vscode/
5+
.packages
6+
.pub/
7+
build/
8+
ios/.generated/
9+
packages
10+
.flutter-plugins

.metadata

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 3ea4d06340a97a1e9d7cae97567c64e0569dcaa2
8+
channel: beta

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# IoT service for Android project
2+
3+
Flutter application which connects to AWS IoT and sends messages to AWS IoT. AWS IoT processes and sends them to https://github.com/lynx-r/arduino-iot-android_java-server
4+
5+
# How does it work
6+
7+
https://vimeo.com/259539079
8+
9+
# Flutter
10+
11+
A new Flutter project.
12+
13+
## Getting Started
14+
15+
For help getting started with Flutter, view our online
16+
[documentation](https://flutter.io/).
17+
18+
## Platform-channel
19+
20+
To get native code in Dart application I used [platform-channel](https://flutter.io/platform-channels/)
21+
22+
# Links
23+
24+
* https://developer.android.com/index.html
25+
* https://aws.amazon.com/iot
26+
* https://github.com/aws/aws-sdk-android

android/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.iml
2+
*.class
3+
.gradle
4+
/local.properties
5+
/.idea/workspace.xml
6+
/.idea/libraries
7+
.DS_Store
8+
/build
9+
/captures
10+
GeneratedPluginRegistrant.java

android/app/build.gradle

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
def localProperties = new Properties()
2+
def localPropertiesFile = rootProject.file('local.properties')
3+
if (localPropertiesFile.exists()) {
4+
localPropertiesFile.withReader('UTF-8') { reader ->
5+
localProperties.load(reader)
6+
}
7+
}
8+
9+
def flutterRoot = localProperties.getProperty('flutter.sdk')
10+
if (flutterRoot == null) {
11+
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12+
}
13+
14+
apply plugin: 'com.android.application'
15+
apply plugin: 'kotlin-android'
16+
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
17+
18+
android {
19+
compileSdkVersion 27
20+
21+
sourceSets {
22+
main.java.srcDirs += 'src/main/kotlin'
23+
}
24+
25+
lintOptions {
26+
disable 'InvalidPackage'
27+
}
28+
29+
defaultConfig {
30+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
31+
applicationId "com.example.myapp"
32+
minSdkVersion 16
33+
targetSdkVersion 27
34+
versionCode 1
35+
versionName "1.0"
36+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
37+
}
38+
39+
buildTypes {
40+
release {
41+
// TODO: Add your own signing config for the release build.
42+
// Signing with the debug keys for now, so `flutter run --release` works.
43+
signingConfig signingConfigs.debug
44+
}
45+
}
46+
}
47+
48+
flutter {
49+
source '../..'
50+
}
51+
52+
dependencies {
53+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
54+
testImplementation 'junit:junit:4.12'
55+
androidTestImplementation 'com.android.support.test:runner:1.0.1'
56+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
57+
58+
compile 'com.amazonaws:aws-android-sdk-iot:2.6.16'
59+
compile 'com.amazonaws:aws-iot-device-sdk-java:1.1.1'
60+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.example.myapp">
3+
4+
<!-- The INTERNET permission is required for development. Specifically,
5+
flutter needs it to communicate with the running application
6+
to allow setting breakpoints, to provide hot reload, etc.
7+
-->
8+
<uses-permission android:name="android.permission.INTERNET"/>
9+
10+
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
11+
calls FlutterMain.startInitialization(this); in its onCreate method.
12+
In most cases you can leave this as-is, but you if you want to provide
13+
additional functionality it is fine to subclass or reimplement
14+
FlutterApplication and put your custom class here. -->
15+
<application
16+
android:name="io.flutter.app.FlutterApplication"
17+
android:label="myapp"
18+
android:icon="@mipmap/ic_launcher">
19+
<activity
20+
android:name=".MainActivity"
21+
android:launchMode="singleTop"
22+
android:theme="@style/LaunchTheme"
23+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale"
24+
android:hardwareAccelerated="true"
25+
android:windowSoftInputMode="adjustResize">
26+
<!-- This keeps the window background of the activity showing
27+
until Flutter renders its first frame. It can be removed if
28+
there is no splash screen (such as the default splash screen
29+
defined in @style/LaunchTheme). -->
30+
<meta-data
31+
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
32+
android:value="true" />
33+
<intent-filter>
34+
<action android:name="android.intent.action.MAIN"/>
35+
<category android:name="android.intent.category.LAUNCHER"/>
36+
</intent-filter>
37+
</activity>
38+
</application>
39+
</manifest>
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
package com.example.myapp
2+
3+
import com.amazonaws.services.iot.client.AWSIotException
4+
import com.amazonaws.services.iot.client.AWSIotMqttClient
5+
import com.amazonaws.services.iot.client.AWSIotQos
6+
import com.amazonaws.services.iot.client.AWSIotMessage
7+
8+
import android.os.Bundle
9+
import android.util.Log
10+
11+
import io.flutter.plugin.common.MethodChannel
12+
import io.flutter.app.FlutterActivity
13+
import io.flutter.plugins.GeneratedPluginRegistrant
14+
15+
class MyMessage(topic: String, qos: AWSIotQos, payload: String) : AWSIotMessage(topic, qos, payload) {
16+
17+
override fun onSuccess() {
18+
// called when message publishing succeeded
19+
}
20+
21+
override fun onFailure() {
22+
// called when message publishing failed
23+
}
24+
25+
override fun onTimeout() {
26+
// called when message publishing timed out
27+
}
28+
}
29+
30+
class MainActivity() : FlutterActivity() {
31+
private val CHANNEL = "samples.flutter.io/iot"
32+
33+
private val TAG = "DEBUG"
34+
private val topic = "sdk/test/java"
35+
36+
private val client: AWSIotMqttClient by lazy { connectToAws() }
37+
38+
override fun onCreate(savedInstanceState: Bundle?) {
39+
super.onCreate(savedInstanceState)
40+
GeneratedPluginRegistrant.registerWith(this)
41+
42+
MethodChannel(flutterView, CHANNEL).setMethodCallHandler { call, result ->
43+
if (call.method == "publishToDevice") {
44+
publish(call.argument("payload"))
45+
result.success(true)
46+
} else {
47+
result.notImplemented()
48+
}
49+
}
50+
}
51+
52+
fun connectToAws(): AWSIotMqttClient {
53+
Log.d(TAG, "connect")
54+
val client = AWSIotMqttClient("a1lv5xlogg9711.iot.eu-west-1.amazonaws.com", "123", "AKIAIKGUGEIUPJDR7QWQ", "hC/CJkCDj6fMb7IOFmfzXEmgAAnKRDReWA2l+n5t")
55+
client.connect()
56+
Log.d(TAG, client.getConnectionStatus().toString())
57+
return client
58+
}
59+
60+
fun publish(payload: String) {
61+
val msg = MyMessage(topic, AWSIotQos.QOS0, payload)
62+
client.publish(msg, 3000)
63+
}
64+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Modify this file to customize your launch splash screen -->
3+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:drawable="@android:color/white" />
5+
6+
<!-- You can insert your own image assets here -->
7+
<!-- <item>
8+
<bitmap
9+
android:gravity="center"
10+
android:src="@mipmap/launch_image" />
11+
</item> -->
12+
</layer-list>
Loading
Loading
Loading
Loading
Loading
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
4+
<!-- Show a splash screen on the activity. Automatically removed when
5+
Flutter draws its first frame -->
6+
<item name="android:windowBackground">@drawable/launch_background</item>
7+
</style>
8+
</resources>

android/build.gradle

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
apply plugin:"idea"
2+
3+
buildscript {
4+
ext.kotlin_version = '1.1.51'
5+
repositories {
6+
google()
7+
jcenter()
8+
}
9+
10+
dependencies {
11+
classpath 'com.android.tools.build:gradle:3.0.1'
12+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
13+
}
14+
}
15+
16+
allprojects {
17+
repositories {
18+
google()
19+
jcenter()
20+
}
21+
}
22+
23+
rootProject.buildDir = '../build'
24+
subprojects {
25+
project.buildDir = "${rootProject.buildDir}/${project.name}"
26+
}
27+
subprojects {
28+
project.evaluationDependsOn(':app')
29+
}
30+
31+
task clean(type: Delete) {
32+
delete rootProject.buildDir
33+
}

android/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.gradle.jvmargs=-Xmx1536M
52.4 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Fri Jun 23 08:50:38 CEST 2017
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

0 commit comments

Comments
 (0)