Skip to content

Commit f98a07e

Browse files
committed
Add files
0 parents  commit f98a07e

File tree

73 files changed

+1960
-0
lines changed

Some content is hidden

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

73 files changed

+1960
-0
lines changed

.idea/libraries/Dart_SDK.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Flutter_for_Android.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/KotlinJavaRuntime.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/main_dart.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.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: 8661d8aecd626f7f57ccbcb735553edc05a2e713
8+
channel: stable
9+
10+
project_type: app

.packages

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by pub on 2019-05-06 18:20:09.588053.
2+
async:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.0.8/lib/
3+
boolean_selector:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-1.0.4/lib/
4+
charcode:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.1.2/lib/
5+
collection:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/
6+
cupertino_icons:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-0.1.2/lib/
7+
flutter:file:///C:/Flutter/flutter/packages/flutter/lib/
8+
flutter_test:file:///C:/Flutter/flutter/packages/flutter_test/lib/
9+
matcher:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.3+1/lib/
10+
meta:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.1.6/lib/
11+
path:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/
12+
pedantic:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/pedantic-1.4.0/lib/
13+
quiver:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/quiver-2.0.1/lib/
14+
sky_engine:file:///C:/Flutter/flutter/bin/cache/pkg/sky_engine/lib/
15+
source_span:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.5.4/lib/
16+
stack_trace:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.9.3/lib/
17+
stream_channel:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-1.6.8/lib/
18+
string_scanner:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.0.4/lib/
19+
term_glyph:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.1.0/lib/
20+
test_api:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.2.2/lib/
21+
typed_data:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/lib/
22+
vector_math:file:///C:/Flutter/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/
23+
flutter_interactivity_navigation:lib/

android/app/build.gradle

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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+
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15+
if (flutterVersionCode == null) {
16+
flutterVersionCode = '1'
17+
}
18+
19+
def flutterVersionName = localProperties.getProperty('flutter.versionName')
20+
if (flutterVersionName == null) {
21+
flutterVersionName = '1.0'
22+
}
23+
24+
apply plugin: 'com.android.application'
25+
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
26+
27+
android {
28+
compileSdkVersion 28
29+
30+
lintOptions {
31+
disable 'InvalidPackage'
32+
}
33+
34+
defaultConfig {
35+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36+
applicationId "com.example.flutter_interactivity_navigation"
37+
minSdkVersion 16
38+
targetSdkVersion 28
39+
versionCode flutterVersionCode.toInteger()
40+
versionName flutterVersionName
41+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
42+
}
43+
44+
buildTypes {
45+
release {
46+
// TODO: Add your own signing config for the release build.
47+
// Signing with the debug keys for now, so `flutter run --release` works.
48+
signingConfig signingConfigs.debug
49+
}
50+
}
51+
}
52+
53+
flutter {
54+
source '../..'
55+
}
56+
57+
dependencies {
58+
testImplementation 'junit:junit:4.12'
59+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
60+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
61+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.example.flutter_interactivity_navigation">
3+
<!-- Flutter needs it to communicate with the running application
4+
to allow setting breakpoints, to provide hot reload, etc.
5+
-->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
</manifest>

0 commit comments

Comments
 (0)