... и .. array []? Что это значит?
Это создать GooglePlayConnection
массив :
GooglePlayConnection[] connections = new GooglePlayConnection[10];
connections[0] = new GooglePlayConnection(/*...*/);
// ...
или
GooglePlayConnection[] connections = new GooglePlayConnection[] {
new GooglePlayConnection(/*...*/),
// ...
};