Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
A
abook_check
  • Overview
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • abook_android
  • abook_check
  • Merge Requests
  • !300

Closed
Opened Mar 02, 2023 by Kazuyuki Hida@hida-k 
  • Report abuse
Report abuse

WIP: Android Gradle Pluginのバージョンを7.4.2に上げた時の差分

実験結果なので、マージしないでください

Don't marge!!!

最新版(Beta)のAndroid Studioで、Gradle Pluginを7.4.2に上げてみました。

移行ツールがついているので、それを使って、試行錯誤しながら上げてみたら、ビルドが通るところまでできました。 動作確認はしていないので、これがそのまま使えるとは限らないのですが、思うほど大きな差分はないようです。

依存ライブラリのバージョンについては、推奨されるものにバージョンアップしたりしています。

Edited Mar 02, 2023 by Kazuyuki Hida
×

Check out, review, and merge locally

Step 1. Fetch and check out the branch for this merge request

git fetch origin
git checkout -b feature/experimental_agp7.4.2 origin/feature/experimental_agp7.4.2

Step 2. Review the changes locally

Step 3. Merge the branch and fix any conflicts that come up

git checkout master
git merge --no-ff feature/experimental_agp7.4.2

Step 4. Push the result of the merge to GitLab

git push origin master

Note that pushing to GitLab requires write access to this repository.

Tip: You can also checkout merge requests locally by following these guidelines.

  • Discussion 11
  • Commits 1
  • Changes 16
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_Launcher_Android/build.gradle
    61 62 assets.srcDirs = ['assets']
    62 63 }
    63 64 }
    64 lintOptions {
    65 quiet true
    66 checkReleaseBuilds false
    67 abortOnError false
    65 packagingOptions {
    66 resources {
    67 excludes += ['values/attrs.xml', 'values/dimens.xml']
    68 }
    68 69 }
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールによって変更されました。

      移行ツールによって変更されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_Launcher_Android/build.gradle
    73 74 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    74 75 }
    75 76 }
    76 packagingOptions {
    77 exclude 'values/attrs.xml'
    78 exclude 'values/dimens.xml'
    79 }
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールによって削除されました。

      移行ツールによって削除されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_Launcher_Android/build.gradle
    130 127 }
    131 128 }
    132 129 }
    130 lint {
    131 abortOnError false
    132 checkReleaseBuilds false
    133 quiet true
    134 }
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールによって追加されました。

      移行ツールによって追加されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_Res_Default_Android/build.gradle
    75 75 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    76 76 }
    77 77 }
    78 lintOptions {
    78 lint {
    79 79 abortOnError false
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールによって変更されました。

      移行ツールによって変更されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_UI_Android/build.gradle
    1 1 buildscript {
    2 2 repositories {
    3 jcenter()
    3 google()
    4 mavenCentral()
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      jcenter()では、見つからないライブラリがあったので、google(), mavenCentral()に置き換えました。

      jcenter()では、見つからないライブラリがあったので、google(), mavenCentral()に置き換えました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_UI_Android/build.gradle
    45 46 jniLibs.srcDirs = ['libs', 'xwalk_core_library/src/main/jniLibs']
    46 47 }
    47 48 }
    48 lintOptions {
    49 quiet true
    50 checkReleaseBuilds false
    51 abortOnError false
    52 }
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールにより削除されました。

      移行ツールにより削除されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_UI_Android/build.gradle
    59 55 }
    60 56
    61 57 useLibrary 'org.apache.http.legacy'
    58 lint {
    59 abortOnError false
    60 checkReleaseBuilds false
    61 quiet true
    62 }
    62 63 }
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールにより追加されました。

      移行ツールにより追加されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/view/ABVCachedWebView.java
    96 96 @SuppressLint("JavascriptInterface")
    97 97 public void initSetting() {
    98 98 Logger.d(TAG, "[initSetting]");
    99 getSettings().setAppCacheEnabled(true);
    99 // getSettings().setAppCacheEnabled(true);
    100 100 getSettings().setAllowFileAccess(true);
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      WebSettings#setAppCacheEnabled()は、無くなったので、コメントアウトしました。

      `WebSettings#setAppCacheEnabled()`は、無くなったので、コメントアウトしました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    gradle/wrapper/gradle-wrapper.properties
    3 3 distributionPath=wrapper/dists
    4 4 zipStoreBase=GRADLE_USER_HOME
    5 5 zipStorePath=wrapper/dists
    6 distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
    6 distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      gradleのバージョンが上がりました。

      gradleのバージョンが上がりました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    xwalk_core_library/build.gradle
    14 14 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    15 15 }
    16 16 }
    17 lintOptions {
    17 namespace 'org.xwalk.core'
    18 lint {
    18 19 abortOnError false
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールにより変更されました。

      移行ツールにより変更されました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Mar 02, 2023
    xwalk_core_library/src/main/AndroidManifest.xml
    1 1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    2 package="org.xwalk.core"
    3 2 android:versionCode="1"
    • Kazuyuki Hida @hida-k commented Mar 02, 2023
      Developer

      移行ツールにより、削除されました。

      移行ツールにより、削除されました。
    Please register or sign in to reply
  • Kazuyuki Hida @hida-k

    changed the description

    Mar 02, 2023

    changed the description

    changed the description
    Toggle commit list
  • Kazuyuki Hida @hida-k

    closed

    Apr 21, 2023

    closed

    closed
    Toggle commit list
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment
Assignee
No assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
1
1 participant
Reference: abook_android/abook_check!300