Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Properties props = new Properties()
  2. props.load(new FileInputStream("sampleapp.properties"))
  3.  
  4. buildConfigField "String", "apiKey", props.getProperty("apiKey")
  5. buildConfigField "String", "apiSecret", props.getProperty("apiSecret")
  6. buildConfigField "String", "defaultLogin", props.getProperty("defaultLogin")
  7. buildConfigField "String", "defaultPassword", props.getProperty("defaultPassword")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement