Android 项目清理工具clean.bat

该博客介绍了如何创建和使用批处理脚本来清理Android项目中的无用文件,包括删除.class、.dex、build文件夹等,以减小项目体积便于传输。通过运行clean.bat脚本,可以自动化清理项目中的Gradle、IDE、测试代码等垃圾文件。

在开发大家基本上都会用项目管理工具,像GitHub 或 SVN 之类的工具,但是也有一些场景是直接打包项目源码的,这个时候也就可以用上这个工具了

作用:删除开发过程中编译的各种.class .dex build等可删除文件

创建过程:

第一步:创建一个txt文本复制下面代码

 
  1. cd "%1"

  2.  
  3. @echo off

  4. echo 正在清除安卓项目垃圾文件,请稍等......

  5.  
  6. @echo off 删除class和dex文件

  7. del *.class *.dex /s /f /a /q

  8.  
  9. rd /s /q .gradle

  10. @echo off 遍历工程文件,删除所有build文件夹

  11. :: /s 代表删除其中的子目录, /q 表示删除目录树时不提示确认,

  12. :: 1>nul 表示将正确删除目录树的信息禁止输出,2>nul 表示将删除过程中的错误信息禁止输出

  13.  
  14. for /f "delims=" %%a in ('dir /b/s/ad ^|findstr /c ".\build"')do rd /s /q "%%a" 2>nul

  15. pause

完成之后修改后缀.bat

然后将clean.bat放到Android项目里面,双击运行即可

运行结果如下:

clean运行结果

clean.bat

经此处理之后,项目一般只有几M大小 压缩传输的情况还是很方便的

 

 

 

AT一键清理Android项目无用文件

我们都很努力着关注

0.7522019.05.05 15:54:07字数 40阅读 118

中间注释的按需求打开 去掉//即可
如遇到保存bat文件出现乱码情况 ,请使用记事本保存文件。

@echo.
@echo   清理准备导入和压缩纯代码的Android Studio项目 
@echo   请将此文件拖入要清理项目的根目录下即可 
@echo.        
@Echo Off
Echo 请选择 Y. 确认            N. 退出
Echo.
Set /p var=请选择:
If /i %var%==N (Exit) 
 
@echo 删除Gradle代码,在导入时重新添加
rmdir .gradle /s /q
@echo.
@echo 删除IDE文件
rmdir .idea /s /q
del *.iml /f /s
del local.properties
@echo.
@echo 删除构建文件夹,将重新创建
rmdir build /s /q
rmdir app\build /s /q
@echo.
@echo 删除Gradle Wrapper,将重新添加
rmdir gradle /s /q
@echo.
@echo 删除Git忽略文件 
//del .gitignore /f /s 
@echo.
@echo 删除其他Gradle文件
//del gradle.properties
del gradle?.*
@echo.
@echo 删除libs文件夹
//rmdir app\libs /s /q
@echo.
@echo 删除ProGuard规则
//del app\proguard-rules.pro /f
@echo.
@echo 删除测试代码
rmdir app\src\androidTest /s /q
rmdir app\src\test /s /q
@echo.
@echo 清除只读属性
attrib -R *.* /s

 

 

 

 

 

 

在下载react-native-camera依赖后运行就有以下错误 D:\AwesomeProject>npm run android > AwesomeProject@0.0.1 android > react-native run-android info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. Jetifier found 1796 file(s) to forward-jetify. Using 12 workers... info JS server already running. info Installing the app... > Configure project :react-native-reanimated AAR for react-native-reanimated has been found D:\AwesomeProject\node_modules\react-native-reanimated\android\react-native-reanimated-68-jsc.aar Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. See https://docs.gradle.org/7.4/userguide/command_line_interface.html#sec:command_line_warnings 6 actionable tasks: 6 up-to-date FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. > Could not resolve project :react-native-camera. Required by: project :app > The consumer was configured to find an API of a component, preferably optimized for Android, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug', attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1'. However we cannot choose between the following variants of project :react-native-camera: - generalDebugApiElements - mlkitDebugApiElements All of them match the consumer attributes: - Variant 'generalDebugApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1', attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug': - Unmatched attributes: - Provides attribute 'com.android.build.api.attributes.ProductFlavor:react-native-camera' with value 'general' but the consumer didn't ask for it - Provides attribute 'com.android.build.gradle.internal.attributes.VariantAttr' with value 'generalDebug' but the consumer didn't ask for it - Doesn't say anything about its target Java environment (preferred optimized for Android) - Provides attribute 'react-native-camera' with value 'general' but the consumer didn't ask for it - Variant 'mlkitDebugApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1', attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug': - Unmatched attributes: - Provides attribute 'com.android.build.api.attributes.ProductFlavor:react-native-camera' with value 'mlkit' but the consumer didn't ask for it - Provides attribute 'com.android.build.gradle.internal.attributes.VariantAttr' with value 'mlkitDebug' but the consumer didn't ask for it - Doesn't say anything about its target Java environment (preferred optimized for Android) - Provides attribute 'react-native-camera' with value 'mlkit' but the consumer didn't ask for it The following variants were also considered but didn't match the requested attributes: - Variant 'generalReleaseApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) - Variant 'generalReleaseRuntimeElements' capability AwesomeProject:react-native-camera:unspecified declares a runtime of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) - Variant 'mlkitReleaseApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) - Variant 'mlkitReleaseRuntimeElements' capability AwesomeProject:react-native-camera:unspecified declares a runtime of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 17s error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup. Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081 FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. > Could not resolve project :react-native-camera. Required by: project :app > The consumer was configured to find an API of a component, preferably optimized for Android, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug', attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1'. However we cannot choose between the following variants of project :react-native-camera: - generalDebugApiElements - mlkitDebugApiElements All of them match the consumer attributes: - Variant 'generalDebugApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1', attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug': - Unmatched attributes: - Provides attribute 'com.android.build.api.attributes.ProductFlavor:react-native-camera' with value 'general' but the consumer didn't ask for it - Provides attribute 'com.android.build.gradle.internal.attributes.VariantAttr' with value 'generalDebug' but the consumer didn't ask for it - Doesn't say anything about its target Java environment (preferred optimized for Android) - Provides attribute 'react-native-camera' with value 'general' but the consumer didn't ask for it - Variant 'mlkitDebugApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1', attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug': - Unmatched attributes: - Provides attribute 'com.android.build.api.attributes.ProductFlavor:react-native-camera' with value 'mlkit' but the consumer didn't ask for it - Provides attribute 'com.android.build.gradle.internal.attributes.VariantAttr' with value 'mlkitDebug' but the consumer didn't ask for it - Doesn't say anything about its target Java environment (preferred optimized for Android) - Provides attribute 'react-native-camera' with value 'mlkit' but the consumer didn't ask for it The following variants were also considered but didn't match the requested attributes: - Variant 'generalReleaseApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) - Variant 'generalReleaseRuntimeElements' capability AwesomeProject:react-native-camera:unspecified declares a runtime of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) - Variant 'mlkitReleaseApiElements' capability AwesomeProject:react-native-camera:unspecified declares an API of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) - Variant 'mlkitReleaseRuntimeElements' capability AwesomeProject:react-native-camera:unspecified declares a runtime of a component, as well as attribute 'com.android.build.api.attributes.AgpVersionAttr' with value '7.3.1': - Incompatible because this component declares a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about its target Java environment (preferred optimized for Android) * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 17s at makeError (D:\AwesomeProject\node_modules\execa\index.js:174:9) at D:\AwesomeProject\node_modules\execa\index.js:278:16 at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async runOnAllDevices (D:\AwesomeProject\node_modules\@react-native-community\cli-platform-android\build\commands\runAndroid\runOnAllDevices.js:109:5) at async Command.handleAction (D:\AwesomeProject\node_modules\@react-native-community\cli\build\index.js:192:9) info Run CLI with --verbose flag for more details. 这是为什么怎么解决
最新发布
08-06
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值