在发布中移除Android调试资源



目前我正在研究一个从服务器检索json的应用程序。我正在多台设备上测试这款应用,但我只有一张SIM卡。为了在设备上测试,我需要将SIM卡移动到那个设备。如果应用程序不能通过APN与服务器联系,则不会有结果。

我所做的是在资源中保存一个所说的json实例,当处于调试模式时,使用它作为结果。这样我就可以测试所有东西(除了连接/请求),而不必每次都切换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'目录。

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中找不到一个故障即清除的解决方案。

希望这也能帮助到其他人!

相关内容

  • 没有找到相关文章

最新更新