可變string.xml我有在String.xml訪問Java或從搖籃
<string name="id">4</string>
一個字符串值,我有其中包含一個變量
public static int Id=1;
現在什麼一類我需要的是我想要在Gradle中獲取這兩個值中的任何一個,它將檢查條件並根據條件重命名我的應用程序。下面給出的是gradle這個代碼的一部分
def identifier //here i need to get value from the java or xml
switch(identifier)
{
case 1:
temp="ApplicationNewName";break;
}
newName=newName.replace("-release",temp);
output.output.File=new File(output.outputFile.parent,newName);
我的問題是,我可以訪問在gradle這個文件Java文件或XML字符串初始化變量?
考慮,解釋你的代碼是如何解答的問題。 –