跳到主要內容

IOS Bundle ldentifier 設定--Unable to add App ID because the '10' App ID limit in '7' days has been exceeded

一開始在開專案時,無限制地一直New  Bundle ldentifier name 結果出現,
"Unable to add App ID because the '10' App ID limit in '7' days has been exceeded"
後來一直使用同一個名字在實驗專案,在此建議在實驗時先使用同一個名字開專案,等待專案差不多時再去修改成符合此專案的Bundle ldentifier name

留言

這個網誌中的熱門文章

IOS Swift 在某路徑下產生檔案 txt json

語法:         func createFile(name: String , fileBaseUrl: URL ){             let manager = FileManager . default                          let file = fileBaseUrl. appendingPathComponent (name)             print ( "文件: \ ( file )" )             let exist = manager. fileExists (atPath: file. path )             if !exist {                 let data = Data (base64Encoded: "aGVsbG8gd29ybGQ=" ,options:. ignoreUnknownCharacters )                 let createSuccess = manager. createFile (atPath: file. path ,contents:data,attributes: nil )                 print ( "文件產生结果: \ ( createSuccess )" )             } ...

android eclipse transformation to android studio Error AAPT: error: style attribute 'attr/@attr/colorChecked (aka com.xxxxx:attr/@attr/colorChecked)' not found.

AAPT: error: style attribute 'attr/@attr/colorChecked 刪除 " @attr/" 即可!!