Skip to content

Commit

Permalink
Merge pull request #12 from fluttercommunity/dev
Browse files Browse the repository at this point in the history
New Changes to Kotlin and Swift
  • Loading branch information
rodydavis authored Oct 28, 2019
2 parents 71a6302 + ea85a19 commit fe7c457
Show file tree
Hide file tree
Showing 66 changed files with 664 additions and 819 deletions.
Binary file modified .DS_Store
Binary file not shown.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Flutter",
"request": "launch",
"type": "dart",
"program": "example/lib/main.dart"
}
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.0

* Updating for latest ios/android flutter plugin template

## 1.0.1

* Android result added
Expand Down
6 changes: 0 additions & 6 deletions android/.classpath

This file was deleted.

Empty file modified android/.gitignore
100755 → 100644
Empty file.
1 change: 0 additions & 1 deletion android/.idea/.name

This file was deleted.

Binary file modified android/.idea/caches/build_file_checksums.ser
100755 → 100644
Binary file not shown.
137 changes: 112 additions & 25 deletions android/.idea/codeStyles/Project.xml
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions android/.idea/gradle.xml
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 4 additions & 36 deletions android/.idea/misc.xml
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion android/.idea/modules.xml
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified android/.idea/runConfigurations.xml
100755 → 100644
Empty file.
23 changes: 0 additions & 23 deletions android/.project

This file was deleted.

2 changes: 0 additions & 2 deletions android/.settings/org.eclipse.buildship.core.prefs

This file was deleted.

17 changes: 12 additions & 5 deletions android/build.gradle
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,37 +1,44 @@
group 'com.appleeducate.fluttersms'
group 'com.example.flutter_sms'
version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}

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

rootProject.allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}

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

android {
compileSdkVersion 28

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
3 changes: 3 additions & 0 deletions android/gradle.properties
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
Binary file removed android/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions android/gradle/wrapper/gradle-wrapper.properties
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Mar 28 08:00:16 EDT 2019
#Mon Oct 28 10:41:06 EDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
Loading

0 comments on commit fe7c457

Please sign in to comment.