Skip to content

Commit 293eaf6

Browse files
Merge pull request #110 from Omega-R/feature/insert_contact_intent_builder
add InsertContactIntentBuilder
2 parents 50e8eb2 + 9bbb6d6 commit 293eaf6

14 files changed

Lines changed: 811 additions & 7 deletions

File tree

689 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

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

.idea/gradle.xml

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

.idea/jarRepositories.xml

Lines changed: 50 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: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@ allprojects {
2020
#### If you use only Java.
2121
```
2222
dependencies {
23-
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.1.1'
23+
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.1.4'
2424
// For extras
25-
implementation 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.1.1'
26-
annotationProcessor 'com.github.Omega-R.OmegaIntentBuilder:processor:1.1.1'
25+
implementation 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.1.4'
26+
annotationProcessor 'com.github.Omega-R.OmegaIntentBuilder:processor:1.1.4'
27+
28+
// AndroidX
29+
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.1.6'
30+
// For extras
31+
implementation 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.1.6'
32+
annotationProcessor 'com.github.Omega-R.OmegaIntentBuilder:processor:1.1.6'
2733
}
2834
```
2935

@@ -42,10 +48,16 @@ android {
4248
}
4349
4450
dependencies {
45-
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.1.1'
51+
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.1.4'
52+
// For extras
53+
implementation 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.1.4'
54+
kapt 'com.github.Omega-R.OmegaIntentBuilder:processor:1.1.4'
55+
56+
// AndroidX
57+
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.1.5'
4658
// For extras
47-
implementation 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.1.1'
48-
kapt 'com.github.Omega-R.OmegaIntentBuilder:processor:1.1.1'
59+
implementation 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.1.5'
60+
kapt 'com.github.Omega-R.OmegaIntentBuilder:processor:1.1.5'
4961
}
5062
```
5163

core/src/main/java/com/omega_r/libs/omegaintentbuilder/OmegaIntentBuilder.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,10 @@ object OmegaIntentBuilder {
135135
@JvmStatic
136136
fun speechToText() = SpeechToTextBuilder()
137137

138+
/**
139+
* @return InsertContactIntentBuilder
140+
*/
141+
@JvmStatic
142+
fun insertContact() = InsertContactIntentBuilder()
143+
138144
}

0 commit comments

Comments
 (0)