This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a0e49b
commit 1c09e42
Showing
12 changed files
with
133 additions
and
123 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.
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,2 +1,7 @@ | ||
# Version 1.0_r1: | ||
# Version 1.0.1: | ||
- **Patch**: Fixed the error message that appeared when users had cookies issues. | ||
- **Minor**: Migrated the build.gradle file to Kotlin DSL (build.gradle.kts). | ||
- **Minor**: Updated dependencies to the latest versions. | ||
|
||
# Version 1.0.0: | ||
- Initial stable version. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName | ||
plugins { | ||
id("com.android.application") | ||
id("org.jetbrains.kotlin.android") | ||
} | ||
android { | ||
compileSdk = 34 | ||
namespace = "com.google.android.apps.bard" | ||
defaultConfig { | ||
applicationId = "com.google.android.apps.bard" | ||
minSdk = 26 | ||
targetSdk = 34 | ||
versionCode = 2 | ||
versionName = "1.0.1" | ||
archivesName = "${applicationId}-v${versionName}" | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
buildTypes { | ||
release { | ||
multiDexEnabled = true | ||
isMinifyEnabled = true | ||
isShrinkResources = true | ||
isDebuggable = false | ||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") | ||
} | ||
debug { | ||
multiDexEnabled = true | ||
isMinifyEnabled = true | ||
isShrinkResources = true | ||
isDebuggable = true | ||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
kotlinOptions { | ||
jvmTarget = "17" | ||
} | ||
buildFeatures { | ||
viewBinding = true | ||
buildConfig = true | ||
} | ||
bundle { | ||
storeArchive { | ||
enable = true | ||
} | ||
} | ||
} | ||
dependencies { | ||
implementation("androidx.core:core-ktx:1.12.0") | ||
implementation("androidx.appcompat:appcompat:1.6.1") | ||
implementation("androidx.constraintlayout:constraintlayout:2.1.4") | ||
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0") | ||
implementation("com.google.android.material:material:1.9.0") | ||
implementation("me.zhanghai.android.fastscroll:library:1.3.0") | ||
testImplementation("junit:junit:4.13.2") | ||
androidTestImplementation("androidx.test.ext:junit:1.1.5") | ||
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") | ||
} |
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,18 +1,16 @@ | ||
<androidx.constraintlayout.widget.ConstraintLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
tools:context=".MainActivity"> | ||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout | ||
android:id="@+id/swipeRefreshLayout" | ||
android:layout_height="match_parent"> | ||
<me.zhanghai.android.fastscroll.FastScrollWebView | ||
android:id="@+id/web_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<me.zhanghai.android.fastscroll.FastScrollWebView | ||
android:id="@+id/web_view" | ||
android:layout_height="match_parent" | ||
android:focusable="true" | ||
android:focusableInTouchMode="true"> | ||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout | ||
android:id="@+id/swipe_refresh_layout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:focusable="true" | ||
android:focusableInTouchMode="true"/> | ||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout> | ||
android:layout_height="match_parent"/> | ||
</me.zhanghai.android.fastscroll.FastScrollWebView> | ||
</androidx.constraintlayout.widget.ConstraintLayout> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
plugins { | ||
id("com.android.application") version "8.1.2" apply false | ||
id("com.android.library") version "8.1.2" apply false | ||
id("org.jetbrains.kotlin.android") version "1.9.0" apply false | ||
} |
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,6 @@ | ||
#Sun Jul 16 12:27:34 EEST 2023 | ||
#Sat Oct 07 13:33:33 EEST 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.