Skip to content
This repository was archived by the owner on Oct 5, 2020. It is now read-only.

Commit 3ee8344

Browse files
committed
Initial version
1 parent 44361e1 commit 3ee8344

File tree

82 files changed

+2594
-2
lines changed

Some content is hidden

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

82 files changed

+2594
-2
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
.DS_Store
2+
.atom/
3+
.idea/
4+
.vscode/
5+
6+
.packages
7+
.pub/
8+
.dart_tool/
9+
pubspec.lock
10+
11+
Podfile
12+
Podfile.lock
13+
Pods/
14+
.symlinks/
15+
**/Flutter/App.framework/
16+
**/Flutter/Flutter.framework/
17+
**/Flutter/Generated.xcconfig
18+
**/Flutter/flutter_assets/
19+
ServiceDefinitions.json
20+
xcuserdata/
21+
22+
local.properties
23+
.gradle/
24+
gradlew
25+
gradlew.bat
26+
gradle-wrapper.jar
27+
*.iml
28+
29+
GeneratedPluginRegistrant.h
30+
GeneratedPluginRegistrant.m
31+
GeneratedPluginRegistrant.java
32+
build/
33+
.flutter-plugins
34+
35+
xcuserdata/*
36+
*.pbxuser
37+
!default.pbxuser
38+
*.mode1v3
39+
!default.mode1v3
40+
*.mode2v3
41+
!default.mode2v3
42+
*.perspectivev3
43+
!default.perspectivev3
44+
xcuserdata/
45+
46+
*.aar
47+
*.framework

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# chirp-connect-flutter
2-
Chirp Connect for Flutter
1+
# Chirp Connect for Flutter (Beta)
2+
3+
Send data with sound using Google's cross platform mobile development framework.

chirpsdk/.metadata

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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: 5391447fae6209bb21a89e6a5a6583cac1af9b4b
8+
channel: dev
9+
10+
project_type: plugin

chirpsdk/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Chirp SDK Flutter
2+
3+
## 0.0.1 - beta
4+
5+
- Initial release using
6+
- iOS v3.4.3
7+
- Android v3.6.0

chirpsdk/LICENSE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Chirp License.
2+
3+
This software is copyright © 2011-2018, Asio Ltd. All rights reserved.
4+
5+
This software is provided under license from Asio Ltd. It is to be used only in accordance with our Fair Use Policy, available at
6+
7+
https://public.chirp.io/docs/Chirp+Fair+Use+Licence+Agreement.pdf
8+
9+
Chirp retains the right to revoke access or use of our technology without limitation. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the software.

chirpsdk/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# ChirpSDK (Beta)
2+
3+
Send data with sound.
4+
5+
## Getting Started
6+
7+
Sign up at the Chirp [Developer Hub](https://developers.chirp.io/sign-up)
8+
9+
Copy and paste your Chirp app key, secret and chosen configuration into the
10+
[example application](https://github.com/chirp/chirp-connect-flutter/tree/master/chirpsdk/example)
11+
12+
## Contributions
13+
14+
This project aims to be a community driven project and is open to contributions.
15+
Please file any issues and pull requests at [GitHub](https://github.com/chirp/chirp-connect-flutter)
16+
Thank you!

chirpsdk/android/.gitignore

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

chirpsdk/android/build.gradle

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
group 'io.chirp.chirpsdk'
2+
version '1.0-SNAPSHOT'
3+
4+
buildscript {
5+
ext.kotlin_version = '1.2.71'
6+
repositories {
7+
google()
8+
jcenter()
9+
}
10+
11+
dependencies {
12+
classpath 'com.android.tools.build:gradle:3.2.1'
13+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14+
}
15+
}
16+
17+
rootProject.allprojects {
18+
repositories {
19+
google()
20+
jcenter()
21+
}
22+
}
23+
24+
apply plugin: 'com.android.library'
25+
apply plugin: 'kotlin-android'
26+
27+
android {
28+
compileSdkVersion 27
29+
30+
sourceSets {
31+
main.java.srcDirs += 'src/main/kotlin'
32+
}
33+
defaultConfig {
34+
minSdkVersion 16
35+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
36+
}
37+
lintOptions {
38+
disable 'InvalidPackage'
39+
}
40+
}
41+
42+
dependencies {
43+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
44+
implementation "com.squareup.okhttp3:okhttp:3.12.0"
45+
implementation files("libs/chirp-connect-release.aar")
46+
}

chirpsdk/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
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)