Skip to content

Commit 0502639

Browse files
committed
First commit.
1 parent ab539c8 commit 0502639

File tree

99 files changed

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

99 files changed

+5736
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.1
2+
3+
* TODO: Describe initial release.

analysis_options.yaml

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
1+
# Specify analysis options.
2+
#
3+
# Until there are meta linter rules, each desired lint must be explicitly enabled.
4+
# See: https://github.com/dart-lang/linter/issues/288
5+
#
6+
# For a list of lints, see: http://dart-lang.github.io/linter/lints/
7+
# See the configuration guide for more
8+
# https://github.com/dart-lang/sdk/tree/master/pkg/analyzer#configuring-the-analyzer
9+
#
10+
# There are other similar analysis options files in the flutter repos,
11+
# which should be kept in sync with this file:
12+
#
13+
# - analysis_options.yaml (this file)
14+
# - packages/flutter/lib/analysis_options_user.yaml
15+
# - https://github.com/flutter/plugins/blob/master/analysis_options.yaml
16+
# - https://github.com/flutter/engine/blob/master/analysis_options.yaml
17+
#
18+
# This file contains the analysis options used by Flutter tools, such as IntelliJ,
19+
# Android Studio, and the `flutter analyze` command.
20+
21+
analyzer:
22+
strong-mode:
23+
implicit-casts: false
24+
implicit-dynamic: false
25+
errors:
26+
# treat missing required parameters as a warning (not a hint)
27+
missing_required_param: warning
28+
# treat missing returns as a warning (not a hint)
29+
missing_return: warning
30+
# allow having TODOs in the code
31+
todo: ignore
32+
# allow self-reference to deprecated members (we do this because otherwise we have
33+
# to annotate every member in every test, assert, etc, when we deprecate something)
34+
deprecated_member_use_from_same_package: ignore
35+
# Ignore analyzer hints for updating pubspecs when using Future or
36+
# Stream and not importing dart:async
37+
# Please see https://github.com/flutter/flutter/pull/24528 for details.
38+
sdk_version_async_exported_from_core: ignore
39+
exclude:
40+
- "bin/cache/**"
41+
- "lib/generated/**"
42+
43+
linter:
44+
rules:
45+
# these rules are documented on and in the same order as
46+
# the Dart Lint rules page to make maintenance easier
47+
# https://github.com/dart-lang/linter/blob/master/example/all.yaml
48+
- always_declare_return_types
49+
- always_put_control_body_on_new_line
50+
# - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
51+
- always_require_non_null_named_parameters
52+
- always_specify_types
53+
- annotate_overrides
54+
# - avoid_annotating_with_dynamic # conflicts with always_specify_types
55+
# - avoid_as # required for implicit-casts: true
56+
- avoid_bool_literals_in_conditional_expressions
57+
# - avoid_catches_without_on_clauses # we do this commonly
58+
# - avoid_catching_errors # we do this commonly
59+
- avoid_classes_with_only_static_members
60+
# - avoid_double_and_int_checks # only useful when targeting JS runtime
61+
- avoid_empty_else
62+
- avoid_equals_and_hash_code_on_mutable_classes
63+
- avoid_field_initializers_in_const_classes
64+
- avoid_function_literals_in_foreach_calls
65+
# - avoid_implementing_value_types # not yet tested
66+
- avoid_init_to_null
67+
# - avoid_js_rounded_ints # only useful when targeting JS runtime
68+
- avoid_null_checks_in_equality_operators
69+
# - avoid_positional_boolean_parameters # not yet tested
70+
# - avoid_print # not yet tested
71+
# - avoid_private_typedef_functions # we prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356)
72+
# - avoid_redundant_argument_values # not yet tested
73+
- avoid_relative_lib_imports
74+
- avoid_renaming_method_parameters
75+
- avoid_return_types_on_setters
76+
# - avoid_returning_null # there are plenty of valid reasons to return null
77+
# - avoid_returning_null_for_future # not yet tested
78+
- avoid_returning_null_for_void
79+
# - avoid_returning_this # there are plenty of valid reasons to return this
80+
# - avoid_setters_without_getters # not yet tested
81+
# - avoid_shadowing_type_parameters # not yet tested
82+
- avoid_single_cascade_in_expression_statements
83+
- avoid_slow_async_io
84+
- avoid_types_as_parameter_names
85+
# - avoid_types_on_closure_parameters # conflicts with always_specify_types
86+
# - avoid_unnecessary_containers # not yet tested
87+
- avoid_unused_constructor_parameters
88+
- avoid_void_async
89+
# - avoid_web_libraries_in_flutter # not yet tested
90+
- await_only_futures
91+
- camel_case_extensions
92+
- camel_case_types
93+
- cancel_subscriptions
94+
# - cascade_invocations # not yet tested
95+
# - close_sinks # not reliable enough
96+
# - comment_references # blocked on https://github.com/flutter/flutter/issues/20765
97+
# - constant_identifier_names # needs an opt-out https://github.com/dart-lang/linter/issues/204
98+
- control_flow_in_finally
99+
# - curly_braces_in_flow_control_structures # not yet tested
100+
# - diagnostic_describe_all_properties # not yet tested
101+
- directives_ordering
102+
- empty_catches
103+
- empty_constructor_bodies
104+
- empty_statements
105+
# - file_names # not yet tested
106+
- flutter_style_todos
107+
- hash_and_equals
108+
- implementation_imports
109+
# - invariant_booleans # too many false positives: https://github.com/dart-lang/linter/issues/811
110+
- iterable_contains_unrelated_type
111+
# - join_return_with_assignment # not yet tested
112+
- library_names
113+
- library_prefixes
114+
# - lines_longer_than_80_chars # not yet tested
115+
- list_remove_unrelated_type
116+
# - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/sdk/issues/34181
117+
# - missing_whitespace_between_adjacent_strings # not yet tested
118+
- no_adjacent_strings_in_list
119+
- no_duplicate_case_values
120+
# - no_logic_in_create_state # not yet tested
121+
# - no_runtimeType_toString # not yet tested
122+
- non_constant_identifier_names
123+
# - null_closures # not yet tested
124+
# - omit_local_variable_types # opposite of always_specify_types
125+
# - one_member_abstracts # too many false positives
126+
# - only_throw_errors # https://github.com/flutter/flutter/issues/5792
127+
- overridden_fields
128+
- package_api_docs
129+
- package_names
130+
- package_prefixed_library_names
131+
# - parameter_assignments # we do this commonly
132+
- prefer_adjacent_string_concatenation
133+
- prefer_asserts_in_initializer_lists
134+
# - prefer_asserts_with_message # not yet tested
135+
- prefer_collection_literals
136+
- prefer_conditional_assignment
137+
- prefer_const_constructors
138+
- prefer_const_constructors_in_immutables
139+
- prefer_const_declarations
140+
- prefer_const_literals_to_create_immutables
141+
# - prefer_constructors_over_static_methods # not yet tested
142+
- prefer_contains
143+
# - prefer_double_quotes # opposite of prefer_single_quotes
144+
- prefer_equal_for_default_values
145+
# - prefer_expression_function_bodies # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#consider-using--for-short-functions-and-methods
146+
- prefer_final_fields
147+
- prefer_final_in_for_each
148+
- prefer_final_locals
149+
- prefer_for_elements_to_map_fromIterable
150+
- prefer_foreach
151+
# - prefer_function_declarations_over_variables # not yet tested
152+
- prefer_generic_function_type_aliases
153+
# - prefer_if_elements_to_conditional_expressions
154+
- prefer_if_null_operators
155+
- prefer_initializing_formals
156+
- prefer_inlined_adds
157+
# - prefer_int_literals # not yet tested
158+
# - prefer_interpolation_to_compose_strings # not yet tested
159+
- prefer_is_empty
160+
- prefer_is_not_empty
161+
- prefer_is_not_operator
162+
- prefer_iterable_whereType
163+
# - prefer_mixin # https://github.com/dart-lang/language/issues/32
164+
# - prefer_null_aware_operators # disable until NNBD, see https://github.com/flutter/flutter/pull/32711#issuecomment-492930932
165+
# - prefer_relative_imports # not yet tested
166+
- prefer_single_quotes
167+
- prefer_spread_collections
168+
- prefer_typing_uninitialized_variables
169+
- prefer_void_to_null
170+
# - provide_deprecation_message # not yet tested
171+
# - public_member_api_docs # enabled on a case-by-case basis; see e.g. packages/analysis_options.yaml
172+
- recursive_getters
173+
- slash_for_doc_comments
174+
# - sort_child_properties_last # not yet tested
175+
- sort_constructors_first
176+
- sort_pub_dependencies
177+
- sort_unnamed_constructors_first
178+
- test_types_in_equals
179+
- throw_in_finally
180+
# - type_annotate_public_apis # subset of always_specify_types
181+
- type_init_formals
182+
# - unawaited_futures # too many false positives
183+
# - unnecessary_await_in_return # not yet tested
184+
- unnecessary_brace_in_string_interps
185+
- unnecessary_const
186+
# - unnecessary_final # conflicts with prefer_final_locals
187+
- unnecessary_getters_setters
188+
# - unnecessary_lambdas # has false positives: https://github.com/dart-lang/linter/issues/498
189+
- unnecessary_new
190+
- unnecessary_null_aware_assignments
191+
- unnecessary_null_in_if_null_operators
192+
- unnecessary_overrides
193+
- unnecessary_parenthesis
194+
- unnecessary_statements
195+
- unnecessary_string_interpolations
196+
- unnecessary_this
197+
- unrelated_type_equality_checks
198+
# - unsafe_html # not yet tested
199+
- use_full_hex_values_for_flutter_colors
200+
# - use_function_type_syntax_for_parameters # not yet tested
201+
# - use_key_in_widget_constructors # not yet tested
202+
- use_rethrow_when_possible
203+
# - use_setters_to_change_properties # not yet tested
204+
# - use_string_buffers # has false positives: https://github.com/dart-lang/sdk/issues/34182
205+
# - use_to_and_as_if_applicable # has false positives, so we prefer to catch this by code-review
206+
- valid_regexps
207+
- void_checks

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

android/build.gradle

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
group 'com.github.cloudwebrtc.flutter_callkeep'
2+
version '1.0'
3+
4+
buildscript {
5+
repositories {
6+
google()
7+
jcenter()
8+
}
9+
10+
dependencies {
11+
classpath 'com.android.tools.build:gradle:3.5.0'
12+
}
13+
}
14+
15+
rootProject.allprojects {
16+
repositories {
17+
google()
18+
jcenter()
19+
}
20+
}
21+
22+
apply plugin: 'com.android.library'
23+
24+
android {
25+
compileSdkVersion 28
26+
27+
defaultConfig {
28+
minSdkVersion 23
29+
}
30+
lintOptions {
31+
disable 'InvalidPackage'
32+
}
33+
compileOptions {
34+
sourceCompatibility JavaVersion.VERSION_1_8
35+
targetCompatibility JavaVersion.VERSION_1_8
36+
}
37+
}
38+
39+
40+
dependencies {
41+
implementation 'com.android.support:support-v4:28.0.0'
42+
implementation 'com.android.support:appcompat-v7:28.0.0'
43+
implementation "com.android.support:support-core-utils:28.0.0"
44+
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
45+
}

android/gradle.properties

Lines changed: 4 additions & 0 deletions
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
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+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip

android/settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'flutter_callkeep'
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="io.wazo.callkeep">
3+
4+
<uses-permission android:name="android.permission.CALL_PHONE" />
5+
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
6+
</manifest>
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
package com.github.cloudwebrtc.flutter_callkeep;
2+
3+
import androidx.annotation.NonNull;
4+
5+
import io.flutter.embedding.engine.plugins.FlutterPlugin;
6+
import io.flutter.embedding.engine.plugins.activity.ActivityAware;
7+
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding;
8+
import io.flutter.plugin.common.MethodCall;
9+
import io.flutter.plugin.common.MethodChannel;
10+
import io.flutter.plugin.common.MethodChannel.MethodCallHandler;
11+
import io.flutter.plugin.common.MethodChannel.Result;
12+
import io.wazo.callkeep.CallKeepModule;
13+
14+
/** FlutterCallkeepPlugin */
15+
public class FlutterCallkeepPlugin implements FlutterPlugin, MethodCallHandler, ActivityAware {
16+
/// The MethodChannel that will the communication between Flutter and native Android
17+
///
18+
/// This local reference serves to register the plugin with the Flutter Engine and unregister it
19+
/// when the Flutter Engine is detached from the Activity
20+
private MethodChannel channel;
21+
private CallKeepModule callKeep;
22+
23+
@Override
24+
public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBinding) {
25+
channel = new MethodChannel(flutterPluginBinding.getBinaryMessenger(), "FlutterCallKeep.Method");
26+
channel.setMethodCallHandler(this);
27+
callKeep = new CallKeepModule(flutterPluginBinding.getApplicationContext(), flutterPluginBinding);
28+
}
29+
30+
@Override
31+
public void onMethodCall(@NonNull MethodCall call, @NonNull Result result) {
32+
if (!callKeep.HandleMethodCall(call, result)) {
33+
result.notImplemented();
34+
}
35+
}
36+
37+
@Override
38+
public void onDetachedFromEngine(@NonNull FlutterPluginBinding binding) {
39+
channel.setMethodCallHandler(null);
40+
}
41+
42+
@Override
43+
public void onAttachedToActivity(@NonNull ActivityPluginBinding binding) {
44+
callKeep.setActivity(binding.getActivity());
45+
}
46+
47+
@Override
48+
public void onDetachedFromActivityForConfigChanges() {
49+
callKeep.setActivity(null);
50+
}
51+
52+
@Override
53+
public void onReattachedToActivityForConfigChanges(@NonNull ActivityPluginBinding binding) {
54+
callKeep.setActivity(binding.getActivity());
55+
}
56+
57+
@Override
58+
public void onDetachedFromActivity() {
59+
callKeep.setActivity(null);
60+
}
61+
}

0 commit comments

Comments
 (0)