I'm starting with OpenGL ES2.0 on Android (5.0.1), API Level 19. Where should I store the shader code? The first example encodes the shader directly as a string.
I'd like to have the shader code in a separate file for better usability. What's the best practice for storing and loading the vertex and fragment shaders?