gpt4 book ai didi

android - 在发布中删除 Android 调试资源

转载 作者:行者123 更新时间:2023-11-29 01:53:02 26 4
gpt4 key购买 nike

目前我正在开发一个从服务器检索 json 的应用程序。我正在多台设备上测试该应用程序,但我只有一张 SIM 卡。因此,为了在设备上进行测试,我需要将 SIM 卡移至该设备。如果应用无法通过 APN 联系服务器,则不会有结果。

我所做的是在资源中保存所述 json 的实例,并在 Debug模式下使用它作为结果。这样我就可以测试所有东西(除了连接/请求),而不必每次都切换 SIM 卡。

private class RequestTask extends AsyncTask< String, String, String > {
...
@Override
protected void onPostExecute( String pResult ) {
...
if ( retrieveFromRawResource( pResult ) ) {
pResult = CustomUtils.parseRawResource( getActivity().getResources(), R.raw.debugjson );
}
...
}

private boolean retrieveFromRawResource( String pResult ) {
return !isValidResult( pResult ) && CustomUtils.isDebugMode( getActivity() );
}

private boolean isValidResult( String pResult ) {
return ( pResult != null && !pResult.isEmpty() );
}
...
}

public class CustomUtils {
...
public static String parseRawResource( Resources pResources, int pResourceId ) {
StringBuilder builder = new StringBuilder();
String line;
try {
InputStream is = pResources.openRawResource( pResourceId );
BufferedReader reader = new BufferedReader( new InputStreamReader( is ) );
while ( ( line = reader.readLine() ) != null )
{
builder.append( line );
builder.append( "\n" );
}
return builder.toString();
} catch ( Exception e ) {
return null;
}
}
...
public static boolean isDebugMode( Context pContext ) {
return ( ( pContext.getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE ) != 0 );
}
...
}

这工作正常,但缺点是发布 APK 中存在“未使用”资源。该文件非常大,因此最好将其从所有版本中剥离。

有没有可能不用每次都手动删除/添加这样的东西?也许结合使用 ant 和 Proguard?我可以在编译之前暂时删除原始 json 文件并在之后替换它,但对该资源的引用仍会在代码中,即使它没有被调用。

最佳答案

好的,这就是我最终得到的。因为我已经在使用 ant,所以我决定在我的 custom_rules ant 文件中解决这个问题。诀窍是覆盖发布目标,删除调试资源,进行实际发布,然后恢复。由于您无法完全删除资源(它们仍然在代码中引用),我开始用虚拟资源替换它们。

属性文件可用于调整设置。在这种情况下,“res/”目录中所有以“debug_”开头的文件将被替换为虚拟文件并移动到“res-debug”目录。

调试.properties:

resource.files=**/debug_*
resource.dir=res/
tmp.dir=res-debug/

custom_rules.ant:

<project name="custom_rules">

<target name="remove-debug-resources">
<property file="debug.properties" prefix="debug" />

<mkdir dir="${debug.tmp.dir}" />
<!-- move all debug resources from the resources dir to the temporary debug dir -->
<move todir="${debug.tmp.dir}" overwrite="false"> <!-- don't overwrite, in case last build failed -->
<fileset dir="${debug.resource.dir}" casesensitive="yes" includes="${debug.resource.files}" />
</move>
<!-- create dummy resources for all the moved debug resources to satisfy the compiler -->
<touch>
<fileset dir="${debug.tmp.dir}" casesensitive="yes" includes="${debug.resource.files}" />
<mapper type="glob" from="*" to="${debug.resource.dir}*" />
</touch>
</target>

<target name="release" depends="remove-debug-resources, android_rules.release, restore-debug-resources" />

<target name="restore-debug-resources">
<property file="debug.properties" prefix="debug" />

<!-- move all debug resources from the temporary debug dir back to the resources dir -->
<move todir="${debug.resource.dir}" failonerror="false">
<fileset dir="${debug.tmp.dir}" casesensitive="yes" includes="${debug.resource.files}" />
</move>
<delete dir="${debug.tmp.dir}" failonerror="false" />
</target>

</project>

这里要记住的最重要的一点是,当编译失败时,移动的资源不会被恢复。一个简单的“ant restore-debug-resources”可以解决这个问题,但您必须记住手动执行此操作。我在 ant 中找不到失败时清除的解决方案。

希望这也能帮助其他人!

关于android - 在发布中删除 Android 调试资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16817802/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com