在Xcode中我這樣做:如何獲取並顯示android apk的版本號?
NSString *temp;
temp = [@"© 2011 Robert Schoenburg "stringByAppendingString:@"Version "];
temp = [temp stringByAppendingString:[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]];
myLabel.text = temp;
我怎樣才能做到同樣的事情在一個Android應用程序?
我用上面的代碼和Eclipse報告了一些錯誤,我固定的。這是工作代碼。我沒有看到輸出。 – user3160965