Skip to content

Commit bf19080

Browse files
authoredJun 1, 2020
Add files via upload
1 parent 4026076 commit bf19080

File tree

96 files changed

+4362
-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.

96 files changed

+4362
-0
lines changed
 

‎android/app/build.gradle

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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 plugin: 'com.google.gms.google-services'
26+
apply plugin: 'kotlin-android'
27+
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
28+
29+
android {
30+
compileSdkVersion 28
31+
32+
sourceSets {
33+
main.java.srcDirs += 'src/main/kotlin'
34+
}
35+
36+
lintOptions {
37+
disable 'InvalidPackage'
38+
}
39+
40+
defaultConfig {
41+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
42+
applicationId "com.example.foodspace"
43+
minSdkVersion 16
44+
targetSdkVersion 28
45+
versionCode flutterVersionCode.toInteger()
46+
versionName flutterVersionName
47+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
48+
}
49+
50+
buildTypes {
51+
release {
52+
signingConfig signingConfigs.debug
53+
minifyEnabled true
54+
}
55+
debug{
56+
minifyEnabled true
57+
}
58+
// release {
59+
// // TODO: Add your own signing config for the release build.
60+
// // Signing with the debug keys for now, so `flutter run --release` works.
61+
// signingConfig signingConfigs.debug
62+
// }
63+
}
64+
}
65+
66+
flutter {
67+
source '../..'
68+
}
69+
70+
dependencies {
71+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
72+
implementation 'com.google.firebase:firebase-analytics:17.2.2'
73+
testImplementation 'junit:junit:4.12'
74+
androidTestImplementation 'androidx.test:runner:1.1.1'
75+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
76+
}
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.foodspace">
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)
Please sign in to comment.