-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specialized in DuckDuckGo instant answers
- Loading branch information
Zagura
committed
Apr 4, 2022
1 parent
fe839a5
commit a4a5a2c
Showing
26 changed files
with
213 additions
and
855 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,57 @@ | ||
# Loader | ||
A library to load text, rss, and ddg intant answers easily in android | ||
# libduckduckgo | ||
A library to load DuckDuckGo instant answers easily in android | ||
|
||
## Installation | ||
Add the following dependency to your ```build.gradle``` file: | ||
``` | ||
dependencies { | ||
implementation 'io.posidon:android.loader:0.0.1' | ||
} | ||
``` | ||
And also make sure that the ```jitpack.io``` repository is included | ||
``` | ||
allprojects { | ||
Add the dependency to your `build.gradle(.kts)` file: | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Kotlin</th> | ||
<th>Groovy</th> | ||
</tr> | ||
</thead> | ||
<tr> | ||
<td> | ||
<pre lang="kotlin">dependencies { | ||
// ... | ||
implementation("io.posidon:android.libduckduckgo:22.0") | ||
}</pre> | ||
</td> | ||
<td> | ||
<pre lang="groovy">dependencies { | ||
// ... | ||
implementation 'io.posidon:android.libduckduckgo:22.0' | ||
}</pre> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
And also make sure that the `jitpack.io` repository is included | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Kotlin</th> | ||
<th>Groovy</th> | ||
</tr> | ||
</thead> | ||
<tr> | ||
<td> | ||
<pre lang="kotlin">allprojects { | ||
repositories { | ||
// ... | ||
maven { | ||
url = uri("https://jitpack.io") | ||
} | ||
} | ||
}</pre> | ||
</td> | ||
<td> | ||
<pre lang="groovy">allprojects { | ||
repositories { | ||
... | ||
// ... | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
``` | ||
}</pre> | ||
</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/posidon/android/loader/demo/Utils.kt → ...sidon/android/libduckduckgo/demo/Utils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 0 additions & 28 deletions
28
app/src/main/java/posidon/android/loader/demo/MainActivity.kt
This file was deleted.
Oops, something went wrong.
80 changes: 0 additions & 80 deletions
80
app/src/main/java/posidon/android/loader/demo/RSSTestActivity.kt
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
app/src/main/java/posidon/android/loader/demo/TextLoadingTestActivity.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="posidon.android.loader"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET"/> | ||
</manifest> | ||
<manifest package="io.posidon.android.libduckduckgo"/> |
Oops, something went wrong.