Skip to content

Commit 7968a8d

Browse files
committed
init
0 parents  commit 7968a8d

File tree

97 files changed

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

97 files changed

+4333
-0
lines changed

.github/workflows/check.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
check:
7+
runs-on: macos-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: subosito/flutter-action@v1
11+
with:
12+
channel: dev
13+
- name: config flutter
14+
run: |
15+
flutter --version
16+
flutter config --enable-web
17+
- name: setup configuration files
18+
run: |
19+
echo "${{ secrets.LocalDart }}" | base64 --decode > lib/local.dart
20+
- name: analyze & test
21+
run: |
22+
flutter analyze
23+
flutter test
24+
- name: notification
25+
if: cancelled() == false
26+
uses: xinthink/[email protected]
27+
with:
28+
botToken: ${{ secrets.TelegramBotToken }}
29+
chatId: ${{ secrets.TelegramTarget }}
30+
jobStatus: ${{ job.status }}

.gitignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
bak/
12+
13+
14+
# Project-specific
15+
local.dart
16+
**/GoogleService-Info.plist
17+
**/google-services.json
18+
web/init-firebase.js
19+
20+
# IntelliJ related
21+
*.iml
22+
*.ipr
23+
*.iws
24+
.idea/
25+
26+
# The .vscode folder contains launch configuration and tasks you configure in
27+
# VS Code which you may wish to be included in version control, so this line
28+
# is commented out by default.
29+
.vscode/
30+
31+
# Flutter/Dart/Pub related
32+
**/doc/api/
33+
.dart_tool/
34+
.flutter-plugins
35+
.flutter-plugins-dependencies
36+
.packages
37+
.pub-cache/
38+
.pub/
39+
/build/
40+
41+
# Web related
42+
lib/generated_plugin_registrant.dart
43+
44+
# Exceptions to above rules.
45+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

.metadata

+10
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: 41a911099b7d06f7b1c29f4420cfcfe41fd26e46
8+
channel: unknown
9+
10+
project_type: app

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<img src='artworks/flt_keep.svg' width='150' alt="Flutter Keep">
2+
3+
---
4+
5+
[![Check Status][check-badge]][check-link]
6+
<!-- [![MIT][license-badge]][license] -->
7+
8+
This is a simplified [Google Keep] mobile app 'clone' built with [Flutter] + [Firebase]. For practicing prototyping and Flutter skills only.
9+
10+
11+
[Flutter]: https://flutter.dev
12+
[Firebase]: https://firebase.google.com/
13+
[Google Keep]: https://www.google.com/keep/
14+
[check-badge]: https://github.com/xinthink/flutter-keep/workflows/check/badge.svg
15+
[check-link]: https://github.com/xinthink/flutter-keep/actions?query=workflow%3Acheck
16+
[license-badge]: https://img.shields.io/github/license/xinthink/flutter-keep
17+
[license]: https://raw.githubusercontent.com/xinthink/flutter-keep/master/LICENSE

analysis_options.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include: package:pedantic/analysis_options.yaml

android/.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
gradle-wrapper.jar
2+
/.gradle
3+
/captures/
4+
/local.properties
5+
**/bak/
6+
**/*.log
7+
.externalNativeBuild
8+
GeneratedPluginRegistrant.java
9+
10+
# Project-specific
11+
google-services.json
12+
keystore.properties
13+
play-dev-*.json

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: 'kotlin-android'
26+
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27+
28+
android {
29+
compileSdkVersion 28
30+
31+
sourceSets {
32+
main.java.srcDirs += 'src/main/kotlin'
33+
}
34+
35+
lintOptions {
36+
disable 'InvalidPackage'
37+
}
38+
39+
defaultConfig {
40+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41+
applicationId "com.xinthink.fltkeep"
42+
minSdkVersion 16
43+
targetSdkVersion 28
44+
versionCode flutterVersionCode.toInteger()
45+
versionName flutterVersionName
46+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
47+
}
48+
49+
buildTypes {
50+
debug {
51+
minifyEnabled true
52+
}
53+
release {
54+
// TODO: Add your own signing config for the release build.
55+
// Signing with the debug keys for now, so `flutter run --release` works.
56+
signingConfig signingConfigs.debug
57+
58+
minifyEnabled true
59+
shrinkResources true
60+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
61+
}
62+
}
63+
}
64+
65+
flutter {
66+
source '../..'
67+
}
68+
69+
dependencies {
70+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
71+
testImplementation 'junit:junit:4.12'
72+
androidTestImplementation 'androidx.test:runner:1.1.1'
73+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
74+
}
75+
76+
apply plugin: 'com.google.gms.google-services'
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.xinthink.fltkeep">
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>
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.xinthink.fltkeep">
3+
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
4+
calls FlutterMain.startInitialization(this); in its onCreate method.
5+
In most cases you can leave this as-is, but you if you want to provide
6+
additional functionality it is fine to subclass or reimplement
7+
FlutterApplication and put your custom class here. -->
8+
<application
9+
android:name="io.flutter.app.FlutterApplication"
10+
android:label="Flutter Keep"
11+
android:icon="@mipmap/ic_launcher">
12+
<activity
13+
android:name=".MainActivity"
14+
android:launchMode="singleTop"
15+
android:theme="@style/LaunchTheme"
16+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
17+
android:hardwareAccelerated="true"
18+
android:windowSoftInputMode="adjustResize">
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN"/>
21+
<category android:name="android.intent.category.LAUNCHER"/>
22+
</intent-filter>
23+
</activity>
24+
<!-- Don't delete the meta-data below.
25+
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
26+
<meta-data
27+
android:name="flutterEmbedding"
28+
android:value="2" />
29+
</application>
30+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.xinthink.fltkeep
2+
3+
import androidx.annotation.NonNull
4+
import io.flutter.embedding.android.FlutterActivity
5+
import io.flutter.embedding.engine.FlutterEngine
6+
import io.flutter.plugins.GeneratedPluginRegistrant
7+
8+
class MainActivity : FlutterActivity() {
9+
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
10+
GeneratedPluginRegistrant.registerWith(flutterEngine)
11+
}
12+
}
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
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>
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.xinthink.fltkeep">
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>

android/build.gradle

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

android/gradle.properties

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
org.gradle.jvmargs=-Xmx1536M
2+
android.enableR8=true
3+
android.useAndroidX=true
4+
android.enableJetifier=true
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-5.6.2-all.zip

0 commit comments

Comments
 (0)