Skip to content

Commit 2afc382

Browse files
graycreateclaude
andcommitted
fix: remove unused Condom library to fix build issues
- Removed unused CondomContext import from App.java - Commented out Condom library dependency due to JitPack connectivity issues - Library was imported but not actually used in the codebase This fixes build failures caused by JitPack being unreachable while maintaining full app functionality. The app already targets Android API level 36, which exceeds Google Play's requirement of API level 35 by August 31, 2025. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e426898 commit 2afc382

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ dependencies {
120120
implementation 'com.github.bumptech.glide:okhttp3-integration:4.16.0'
121121
implementation 'pub.devrel:easypermissions:3.0.0'
122122
implementation 'org.greenrobot:eventbus:3.3.1'
123-
implementation 'com.github.oasisfeng:condom:2.5.0'
123+
// Temporarily disabled due to JitPack issues
124+
// implementation 'com.github.oasisfeng:condom:2.5.0'
124125
implementation 'org.slf4j:slf4j-nop:2.0.17'
125126
implementation 'androidx.core:core-splashscreen:1.0.1'
126127
}

app/src/main/java/me/ghui/v2er/general/App.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import androidx.annotation.Nullable;
66

7-
import com.oasisfeng.condom.CondomContext;
87
import com.orhanobut.logger.AndroidLogAdapter;
98
import com.orhanobut.logger.FormatStrategy;
109
import com.orhanobut.logger.Logger;

0 commit comments

Comments
 (0)